0e076f9c41ecd761b73ba979467b1297b64467b5
[reactos.git] / posix / include / iconv.h
1 /*
2 * iconv.h
3 *
4 * codeset conversion facility. Based on the Single UNIX(r) Specification,
5 * Version 2
6 *
7 * This file is part of the ReactOS Operating System.
8 *
9 * Contributors:
10 * Created by KJK::Hyperion <noog@libero.it>
11 *
12 * THIS SOFTWARE IS NOT COPYRIGHTED
13 *
14 * This source code is offered for use in the public domain. You may
15 * use, modify or distribute it freely.
16 *
17 * This code is distributed in the hope that it will be useful but
18 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
19 * DISCLAMED. This includes but is not limited to warranties of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 *
22 */
23 #ifndef __ICONV_H_INCLUDED__
24 #define __ICONV_H_INCLUDED__
25
26 /* INCLUDES */
27 #ifdef __PSXDLL__
28
29 /* headers for internal usage by psxdll.dll and ReactOS */
30
31 #else /* ! __PSXDLL__ */
32
33 /* standard POSIX headers */
34
35 #endif
36
37 /* OBJECTS */
38
39 /* TYPES */
40 typedef (void *) iconv_t;
41
42 /* CONSTANTS */
43
44 /* PROTOTYPES */
45 iconv_t iconv_open(const char *, const char *);
46 size_t iconv(iconv_t, char **, size_t *, char **, size_t *);
47 int iconv_close(iconv_t);
48
49 /* MACROS */
50
51 #endif /* __ICONV_H_INCLUDED__ */
52
53 /* EOF */
54