diff options
| author | Miguel <m.i@gmx.at> | 2018-09-16 11:39:36 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-09-16 11:39:36 +0200 |
| commit | 740ae2e69995df37c44fe61f57642ee642982ca2 (patch) | |
| tree | b84ec79e9243fd0fe103fab1c1acc1e91e60f53d /fs/file.h | |
| parent | e0449c5adc89eec9f378cb40a56762bf314a80ea (diff) | |
cleanup and starting improve mounts and file access (pipes, sysfiles, ext2)
Diffstat (limited to 'fs/file.h')
| -rw-r--r-- | fs/file.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/fs/file.h b/fs/file.h deleted file mode 100644 index 53c96d8..0000000 --- a/fs/file.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef FILE_H -#define FILE_H - -#include <stdint.h> - -#define FILE_MAX_FILES 100; - -typedef struct -{ - int(* seek)(int offset, int whence); - - int(* read)(char *buf, int len); - int(* wrtie)(char *buf, int len); - - int(* close)(); - int(* stat)(void *buf); - - void *data; //opaque - -}file; - - - - - -#endif |
