FENIX_libc/include/iconv.h

12 lines
278 B
C
Raw Normal View History

2020-12-09 00:17:46 +00:00
#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