Skip to content

Commit

Permalink
README: mention seeing/file pos functions API
Browse files Browse the repository at this point in the history
Suggested-by: Derek Buitenhuis
Discussed-in: #1
  • Loading branch information
bagder committed Apr 24, 2016
1 parent 4cbf72c commit f6d7756
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Expand Up @@ -28,3 +28,13 @@ Maybe something like this?
char *fcurl_gets(char *s, int size, FCURL *stream);

int fcurl_ungetc(int c, FCURL *stream);

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

long fcurl_tell(FILE *stream);

void fcurl_rewind(FILE *stream);

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

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

0 comments on commit f6d7756

Please sign in to comment.