1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* libio/stdio.h: Move open_wmemstream prototype to ...

* wcsmbs/wchar.h: ... here.
This commit is contained in:
Ulrich Drepper
2006-09-27 15:57:56 +00:00
parent f1122ec3ae
commit 1c31aa7979
3 changed files with 13 additions and 7 deletions

View File

@ -291,13 +291,7 @@ extern FILE *fmemopen (void *__s, size_t __len, __const char *__modes) __THROW;
/* Open a stream that writes into a malloc'd buffer that is expanded as
necessary. *BUFLOC and *SIZELOC are updated with the buffer's location
and the number of characters written on fflush or fclose. */
extern FILE *open_memstream (char **__restrict __bufloc,
size_t *__restrict __sizeloc) __THROW;
/* Like OPEN_MEMSTREAM, but the stream is wide oriented and produces
a wide character string. */
extern FILE *open_wmemstream (wchar_t **__restrict __bufloc,
size_t *__restrict __sizeloc) __THROW;
extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW;
#endif