Full definition

This commit is contained in:
Gitea 2020-12-08 18:17:46 -06:00
parent 4fbcbe2298
commit 62218ac1be
1 changed files with 12 additions and 0 deletions

12
include/iconv.h Normal file
View File

@ -0,0 +1,12 @@
#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