We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6d7756 commit b50c7e0Copy full SHA for b50c7e0
1 file changed
README.md
@@ -29,12 +29,12 @@ Maybe something like this?
29
30
int fcurl_ungetc(int c, FCURL *stream);
31
32
- int fcurl_seek(FILE *stream, long offset, int whence);
+ int fcurl_seek(FCURL *stream, long offset, int whence);
33
34
- long fcurl_tell(FILE *stream);
+ long fcurl_tell(FCURL *stream);
35
36
- void fcurl_rewind(FILE *stream);
+ void fcurl_rewind(FCURL *stream);
37
38
- int fcurl_getpos(FILE *stream, fpos_t *pos);
+ int fcurl_getpos(FCURL *stream, fpos_t *pos);
39
40
- int fcurl_setpos(FILE *stream, const fpos_t *pos);
+ int fcurl_setpos(FCURL *stream, const fpos_t *pos);
0 commit comments