istereo2
view src/ios/assman.c @ 18:25d821ab1ca2
fixed ios bugs
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 01 Oct 2015 08:36:55 +0300 |
parents | |
children |
line source
1 #include <stdio.h>
2 #include "assman.h"
4 ass_file *ass_fopen(const char *fname, const char *mode)
5 {
6 return (ass_file*)fopen(fname, mode);
7 }
9 void ass_fclose(ass_file *fp)
10 {
11 fclose((FILE*)fp);
12 }
14 long ass_fseek(ass_file *fp, long offs, int whence)
15 {
16 fseek((FILE*)fp, offs, whence);
17 return ftell((FILE*)fp);
18 }
20 long ass_ftell(ass_file *fp)
21 {
22 return ftell((FILE*)fp);
23 }
25 size_t ass_fread(void *buf, size_t size, size_t count, ass_file *fp)
26 {
27 return fread(buf, size, count, (FILE*)fp);
28 }