diff options
Diffstat (limited to 'fs/file.h')
| -rw-r--r-- | fs/file.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -6,11 +6,13 @@ typedef struct { + void(* tell)(); void(* seek)(int offset, int whence); + void(* read)(char *buf, int len); void(* wrtie)(char *buf, int len); + void(* close)(); - void(* tell)(); int(* stat)(struct stat *buf); void *data; //opaque |
