glibc/conform/data/iconv.h-data
Ulrich Drepper f095bb7204 Add support for XPG7 testing.
The header conformance testing code needed extending for XPG7.  This
exposed a few bugs in the headers.  There are more changes to come.
2010-01-09 10:56:41 -08:00

13 lines
286 B
Plaintext

#if !defined ISO && !defined POSIX
type iconv_t
# if defined XOPEN2K8 || defined POSIX2008
type size_t
# endif
function iconv_t iconv_open (const char*, const char*)
function size_t iconv (iconv_t, char**, size_t*, char**, size_t*)
function int iconv_close (iconv_t)
allow *_t
#endif