summaryrefslogtreecommitdiff
path: root/libio/stdio.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2006-01-16 20:14:50 +0000
committerUlrich Drepper <drepper@redhat.com>2006-01-16 20:14:50 +0000
commit63f8fe54565b20dc7adb23381a7eb21439f02a40 (patch)
treea5e8b8558680be271be24ae8fce6d067c921261b /libio/stdio.h
parent2d79a585c11cdd89f6406c49f339bac3def51431 (diff)
* 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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libio/stdio.h b/libio/stdio.h
index fbe0f568a0..566ec5a9bf 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