X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Fstdio.h;h=dca8acc0272857c7050d333561598e05bf898cd5;hp=69178cc873c67df35d0d743cbd20523ee4fe03df;hb=5e9314ff03076a94316d4e66efd082548c065f3d;hpb=e72180083e4b0203d1883b6054198decdb60071c diff --git a/include/stdio.h b/include/stdio.h index 69178cc8..dca8acc0 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -121,6 +121,8 @@ FILE *tmpfile(void); #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) +FILE *fmemopen(void *, size_t, const char *); +FILE *open_memstream(char **, size_t *); FILE *fdopen(int, const char *); FILE *popen(const char *, const char *); int pclose(FILE *); @@ -158,6 +160,11 @@ int asprintf(char **, const char *, ...); int vasprintf(char **, const char *, va_list); void setlinebuf(FILE *); void setbuffer(FILE *, char *, size_t); +int fpurge(FILE *); +int fgetc_unlocked(FILE *); +int fputc_unlocked(int, FILE *); +char *fgets_unlocked(char *, int, FILE *); +int fputs_unlocked(const char *, FILE *); #endif #ifdef __cplusplus