Remove SOL body flags
[neverball] / share / fs_ov.c
1 #include "fs.h"
2 #include "fs_ov.h"
3
4 size_t fs_ov_read(void *ptr, size_t size, size_t nmemb, void *datasource)
5 {
6     return fs_read(ptr, size, nmemb, datasource);
7 }
8
9 int fs_ov_seek(void *datasource, ogg_int64_t offset, int whence)
10 {
11     return fs_seek(datasource, offset, whence);
12 }
13
14 int fs_ov_close(void *datasource)
15 {
16     return fs_close(datasource);
17 }
18
19 long fs_ov_tell(void *datasource)
20 {
21     return fs_tell(datasource);
22 }