first attempt at enabling stack protector support
[musl.git] / include / iconv.h
blobf2ccaf8c3e7a2ca2939e8c200922869aaba4f6d4
1 #ifndef _ICONV_H
2 #define _ICONV_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #define __NEED_size_t
10 #include <bits/alltypes.h>
12 typedef void *iconv_t;
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);
18 #ifdef __cplusplus
20 #endif
22 #endif