Group key config symbols together
[neverball] / share / fs.h
index f30272b..32a5e27 100644 (file)
@@ -27,12 +27,15 @@ int  fs_flush(fs_file);
 long fs_tell(fs_file);
 int  fs_seek(fs_file, long offset, int whence);
 int  fs_eof(fs_file);
+int  fs_length(fs_file);
 
 int   fs_getc(fs_file);
 char *fs_gets(char *dst, int count, fs_file fh);
 int   fs_putc(int c, fs_file);
 int   fs_puts(const char *src, fs_file);
 
+void *fs_load(const char *path, int *size);
+
 int fs_mkdir(const char *);
 
 #include <stdarg.h>