12 lines
278 B
C
12 lines
278 B
C
|
#ifndef _ICONV_H
|
||
|
#define _ICONV_H
|
||
|
|
||
|
typedef void * iconv_t;
|
||
|
#include <types/size_t.h>
|
||
|
|
||
|
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
|