Full definition
This commit is contained in:
parent
4fbcbe2298
commit
62218ac1be
1 changed files with 12 additions and 0 deletions
12
include/iconv.h
Normal file
12
include/iconv.h
Normal 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
|
Loading…
Reference in a new issue