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

* libio/stdio.h: Declare open_wmemstream.

* libio/Versions: Export open_wmemstream for GLIBC_2.4.
This commit is contained in:
Ulrich Drepper
2006-01-16 20:14:50 +00:00
parent 2d79a585c1
commit 63f8fe5456
4 changed files with 14 additions and 2 deletions

View File

@ -293,6 +293,11 @@ extern FILE *fmemopen (void *__s, size_t __len, __const char *__modes) __THROW;
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;
#endif