summaryrefslogtreecommitdiff
path: root/include/iconv.h
blob: 5b25d2b2ee2803c540d84e677ab45e7322775cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __ICONV_H
#define __ICONV_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