diff options
Diffstat (limited to 'userland/libc/include')
-rw-r--r-- | userland/libc/include/stdio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/userland/libc/include/stdio.h b/userland/libc/include/stdio.h index 94ac9dc..aafae78 100644 --- a/userland/libc/include/stdio.h +++ b/userland/libc/include/stdio.h @@ -115,4 +115,8 @@ int fsetpos(FILE *stream, const fpos_t *pos); int fgetpos(FILE *restrict stream, fpos_t *restrict pos); char *tmpnam(char *s); int rename(const char *old, const char *new); +size_t getdelim(char ** lineptr, size_t * n, + int delimiter, FILE * stream); +size_t getline(char ** lineptr, size_t * n, + FILE * stream); #endif |