123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef _ICONV_H
- #define _ICONV_H 1
- #include <features.h>
- #define __need_size_t
- #include <stddef.h>
- #ifndef __UCLIBC_HAS_LOCALE__
- #error Attempted to include iconv.h when uClibc built without locale support.
- #endif
- __BEGIN_DECLS
- typedef void *iconv_t;
- extern iconv_t iconv_open (__const char *__tocode, __const char *__fromcode)
- __THROW;
- extern size_t iconv (iconv_t __cd, char **__restrict __inbuf,
- size_t *__restrict __inbytesleft,
- char **__restrict __outbuf,
- size_t *__restrict __outbytesleft);
- extern int iconv_close (iconv_t __cd) __THROW;
- __END_DECLS
- #endif
|