mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
14 lines
364 B
C
14 lines
364 B
C
#ifndef _LIBICONV_H
|
|
#define _LIBICONV_H
|
|
#include <stddef.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
typedef void* iconv_t;
|
|
iconv_t iconv_open(const char *tocode, const char *fromcode);
|
|
int iconv_close(iconv_t cd);
|
|
size_t iconv(iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif//_LIBICONV_H
|