SDL
2.0
iconv.h
Go to the documentation of this file.
1
#ifndef ICONV_H_
/* minimal iconv.h header based on public knowledge */
2
#define ICONV_H_
3
4
#include <stddef.h>
/* size_t */
5
#include <errno.h>
6
7
typedef
void
*
iconv_t
;
8
9
#ifdef __cplusplus
10
extern
"C"
{
11
#endif
12
13
extern
iconv_t
iconv_open
(
const
char
*,
const
char
*);
14
extern
size_t
iconv
(
iconv_t
,
char
**,
size_t
*,
char
**,
size_t
*);
15
extern
int
iconv_close
(
iconv_t
);
16
17
#ifdef __cplusplus
18
}
19
#endif
20
21
#endif
/* ICONV_H_ */
iconv_t
void * iconv_t
Definition:
iconv.h:7
iconv_close
int iconv_close(iconv_t)
iconv_open
iconv_t iconv_open(const char *, const char *)
iconv
size_t iconv(iconv_t, char **, size_t *, char **, size_t *)
src
core
os2
geniconv
iconv.h
Generated by
1.9.1