PSXDLL: RtlNtStatusToPsxErrno moved to PSX subsystem client library from NTDLL.
[reactos.git] / posix / include / iconv.h
1 /* $Id: iconv.h,v 1.4 2002/10/29 04:45:10 rex Exp $
2 */
3 /*
4 * iconv.h
5 *
6 * codeset conversion facility. Conforming to the Single UNIX(r)
7 * Specification Version 2, System Interface & Headers Issue 5
8 *
9 * This file is part of the ReactOS Operating System.
10 *
11 * Contributors:
12 * Created by KJK::Hyperion <noog@libero.it>
13 *
14 * THIS SOFTWARE IS NOT COPYRIGHTED
15 *
16 * This source code is offered for use in the public domain. You may
17 * use, modify or distribute it freely.
18 *
19 * This code is distributed in the hope that it will be useful but
20 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
21 * DISCLAMED. This includes but is not limited to warranties of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 *
24 */
25 #ifndef __ICONV_H_INCLUDED__
26 #define __ICONV_H_INCLUDED__
27
28 /* INCLUDES */
29
30 /* OBJECTS */
31
32 /* TYPES */
33 typedef (void *) iconv_t;
34
35 /* CONSTANTS */
36
37 /* PROTOTYPES */
38 iconv_t iconv_open(const char *, const char *);
39 size_t iconv(iconv_t, char **, size_t *, char **, size_t *);
40 int iconv_close(iconv_t);
41
42 /* MACROS */
43
44 #endif /* __ICONV_H_INCLUDED__ */
45
46 /* EOF */
47