blob: 68c11144419d18870c18f5930ea195c6dd5cb931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef _ICONV_H
#define _ICONV_H
#include <bits/size_t.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef void *iconv_t;
#ifndef __MLIBC_ABI_ONLY
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 /* !__MLIBC_ABI_ONLY */
#ifdef __cplusplus
}
#endif
#endif
|