10 /* those are implemented by the specific/file-io-*.c */
11 int wl_open(const char *filename
, int flags
);
12 void wl_close(int fd
);
13 int wl_read(int fd
, void *buf
, unsigned int count
);
14 int wl_write(int fd
, void *buf
, unsigned int count
);
15 int wl_seek(int fd
, unsigned int pos
);
16 int wl_fsize(int fd
, unsigned int *size
);
17 unsigned int wl_tell(int fd
);
19 #endif /* WL_FILE_IO_H */