mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
* libio/stdio.h: Move open_wmemstream prototype to ...
* wcsmbs/wchar.h: ... here.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2006-09-27 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* libio/stdio.h: Move open_wmemstream prototype to ...
|
||||||
|
* wcsmbs/wchar.h: ... here.
|
||||||
|
|
||||||
2006-09-25 Jakub Jelinek <jakub@redhat.com>
|
2006-09-25 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
[BZ #3252]
|
[BZ #3252]
|
||||||
|
@ -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
|
/* 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
|
necessary. *BUFLOC and *SIZELOC are updated with the buffer's location
|
||||||
and the number of characters written on fflush or fclose. */
|
and the number of characters written on fflush or fclose. */
|
||||||
extern FILE *open_memstream (char **__restrict __bufloc,
|
extern FILE *open_memstream (char **__bufloc, size_t *__sizeloc) __THROW;
|
||||||
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
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -600,6 +600,13 @@ extern wchar_t *wcpncpy (wchar_t *__dest, __const wchar_t *__src, size_t __n)
|
|||||||
|
|
||||||
|
|
||||||
/* Wide character I/O functions. */
|
/* Wide character I/O functions. */
|
||||||
|
|
||||||
|
#ifdef __USE_GNU
|
||||||
|
/* Like OPEN_MEMSTREAM, but the stream is wide oriented and produces
|
||||||
|
a wide character string. */
|
||||||
|
extern __FILE *open_wmemstream (wchar_t **__bufloc, size_t *__sizeloc) __THROW;
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined __USE_ISOC99 || defined __USE_UNIX98
|
#if defined __USE_ISOC99 || defined __USE_UNIX98
|
||||||
__BEGIN_NAMESPACE_C99
|
__BEGIN_NAMESPACE_C99
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user