1#pragma once
2
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7#include <features.h>
8
9#define __NEED_size_t
10
11#include <bits/alltypes.h>
12
13typedef void* iconv_t;
14
15iconv_t iconv_open(const char*, const char*);
16size_t iconv(iconv_t, char** __restrict, size_t* __restrict, char** __restrict, size_t* __restrict);
17int iconv_close(iconv_t);
18
19#ifdef __cplusplus
20}
21#endif
22