diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-01-16 20:14:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-01-16 20:14:50 +0000 |
commit | 63f8fe54565b20dc7adb23381a7eb21439f02a40 (patch) | |
tree | a5e8b8558680be271be24ae8fce6d067c921261b /libio/stdio.h | |
parent | 2d79a585c11cdd89f6406c49f339bac3def51431 (diff) | |
download | glibc-63f8fe54565b20dc7adb23381a7eb21439f02a40.zip glibc-63f8fe54565b20dc7adb23381a7eb21439f02a40.tar.gz glibc-63f8fe54565b20dc7adb23381a7eb21439f02a40.tar.bz2 |
* libio/stdio.h: Declare open_wmemstream.
* libio/Versions: Export open_wmemstream for GLIBC_2.4.
Diffstat (limited to 'libio/stdio.h')
-rw-r--r-- | libio/stdio.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index fbe0f56..566ec5a 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -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 |