2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _ICONV_H
|
|
|
|
#define _ICONV_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-09-08 21:14:52 +00:00
|
|
|
#include <features.h>
|
2012-09-07 02:44:55 +00:00
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#define __NEED_size_t
|
|
|
|
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
|
|
|
|
typedef void *iconv_t;
|
|
|
|
|
|
|
|
iconv_t iconv_open(const char *, const char *);
|
2012-09-07 02:44:55 +00:00
|
|
|
size_t iconv(iconv_t, char **__restrict, size_t *__restrict, char **__restrict, size_t *__restrict);
|
2011-02-12 05:22:29 +00:00
|
|
|
int iconv_close(iconv_t);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|