interface: add sample filesystem interface

This commit is contained in:
2026-02-26 19:47:16 +00:00
parent 01109948b2
commit bdb2e0ed50
3 changed files with 12 additions and 0 deletions

4
interface/fs.if Normal file
View File

@@ -0,0 +1,4 @@
interface fs {
msg open(string path, int flags) -> (int err);
msg uppercase(string old) -> (string new);
}