Skip to content

Commit

Permalink
README: FCURL, not FILEa
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Apr 25, 2016
1 parent f6d7756 commit b50c7e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -29,12 +29,12 @@ Maybe something like this?

int fcurl_ungetc(int c, FCURL *stream);

int fcurl_seek(FILE *stream, long offset, int whence);
int fcurl_seek(FCURL *stream, long offset, int whence);

long fcurl_tell(FILE *stream);
long fcurl_tell(FCURL *stream);

void fcurl_rewind(FILE *stream);
void fcurl_rewind(FCURL *stream);

int fcurl_getpos(FILE *stream, fpos_t *pos);
int fcurl_getpos(FCURL *stream, fpos_t *pos);

int fcurl_setpos(FILE *stream, const fpos_t *pos);
int fcurl_setpos(FCURL *stream, const fpos_t *pos);

0 comments on commit b50c7e0

Please sign in to comment.