blob: cbaef7b7d10a53520300b4d31f019bef16107d17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __ICONV_H
#define __ICONV_H
#include <stddef.h>
typedef void *iconv_t;
typedef __SIZE_TYPE__ size_t;
size_t iconv(iconv_t, char **restrict, size_t *restrict, char **restrict,
size_t *restrict);
int iconv_close(iconv_t);
iconv_t iconv_open(const char *, const char *);
#endif
|