blob: 42b3ea3a5b4ec20271adf8cf6e3d9b60fd555bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef ICONV_H
#define ICONV_H
#include <stdlib.h>
typedef int iconv_t;
iconv_t iconv_open(const char *tocode, const char *fromcode) __THROW;
size_t iconv(iconv_t cd, const char **inbuf, size_t *inbytesleft,
char **outbuf, size_t *outbytesleft) __THROW;
int iconv_close(iconv_t) __THROW;
#endif
|