use symlink rather than bogus linker script for libc.so
[musl] / include / iconv.h
1 #ifndef _ICONV_H
2 #define _ICONV_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #define __NEED_size_t
9
10 #include <bits/alltypes.h>
11
12 typedef void *iconv_t;
13
14 iconv_t iconv_open(const char *, const char *);
15 size_t iconv(iconv_t, char **, size_t *, char **, size_t *);
16 int iconv_close(iconv_t);
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif