mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
15 lines
352 B
C
15 lines
352 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
|