f8f7262d2f86f066f2b23b27c1d8afacd4ff0d43
[platform/upstream/diffutils.git] / lib / iconv.in.h
1 /* A GNU-like <iconv.h>.
2
3    Copyright (C) 2007-2018 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, see <https://www.gnu.org/licenses/>.  */
17
18 #ifndef _@GUARD_PREFIX@_ICONV_H
19
20 #if __GNUC__ >= 3
21 @PRAGMA_SYSTEM_HEADER@
22 #endif
23 @PRAGMA_COLUMNS@
24
25 /* The include_next requires a split double-inclusion guard.  */
26 #@INCLUDE_NEXT@ @NEXT_ICONV_H@
27
28 #ifndef _@GUARD_PREFIX@_ICONV_H
29 #define _@GUARD_PREFIX@_ICONV_H
30
31 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
32
33 /* The definition of _GL_ARG_NONNULL is copied here.  */
34
35 /* The definition of _GL_WARN_ON_USE is copied here.  */
36
37
38 #if @GNULIB_ICONV@
39 # if @REPLACE_ICONV_OPEN@
40 /* An iconv_open wrapper that supports the IANA standardized encoding names
41    ("ISO-8859-1" etc.) as far as possible.  */
42 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
43 #   define iconv_open rpl_iconv_open
44 #  endif
45 _GL_FUNCDECL_RPL (iconv_open, iconv_t,
46                   (const char *tocode, const char *fromcode)
47                   _GL_ARG_NONNULL ((1, 2)));
48 _GL_CXXALIAS_RPL (iconv_open, iconv_t,
49                   (const char *tocode, const char *fromcode));
50 # else
51 _GL_CXXALIAS_SYS (iconv_open, iconv_t,
52                   (const char *tocode, const char *fromcode));
53 # endif
54 _GL_CXXALIASWARN (iconv_open);
55 #elif defined GNULIB_POSIXCHECK
56 # undef iconv_open
57 # if HAVE_RAW_DECL_ICONV_OPEN
58 _GL_WARN_ON_USE (iconv_open, "iconv_open is not working correctly everywhere - "
59                  "use gnulib module iconv for portability");
60 # endif
61 #endif
62
63 #if @REPLACE_ICONV_UTF@
64 /* Special constants for supporting UTF-{16,32}{BE,LE} encodings.
65    Not public.  */
66 # define _ICONV_UTF8_UTF16BE (iconv_t)(-161)
67 # define _ICONV_UTF8_UTF16LE (iconv_t)(-162)
68 # define _ICONV_UTF8_UTF32BE (iconv_t)(-163)
69 # define _ICONV_UTF8_UTF32LE (iconv_t)(-164)
70 # define _ICONV_UTF16BE_UTF8 (iconv_t)(-165)
71 # define _ICONV_UTF16LE_UTF8 (iconv_t)(-166)
72 # define _ICONV_UTF32BE_UTF8 (iconv_t)(-167)
73 # define _ICONV_UTF32LE_UTF8 (iconv_t)(-168)
74 #endif
75
76 #if @GNULIB_ICONV@
77 # if @REPLACE_ICONV@
78 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
79 #   define iconv rpl_iconv
80 #  endif
81 _GL_FUNCDECL_RPL (iconv, size_t,
82                   (iconv_t cd,
83                    @ICONV_CONST@ char **inbuf, size_t *inbytesleft,
84                    char **outbuf, size_t *outbytesleft));
85 _GL_CXXALIAS_RPL (iconv, size_t,
86                   (iconv_t cd,
87                    @ICONV_CONST@ char **inbuf, size_t *inbytesleft,
88                    char **outbuf, size_t *outbytesleft));
89 # else
90 _GL_CXXALIAS_SYS (iconv, size_t,
91                   (iconv_t cd,
92                    @ICONV_CONST@ char **inbuf, size_t *inbytesleft,
93                    char **outbuf, size_t *outbytesleft));
94 # endif
95 _GL_CXXALIASWARN (iconv);
96 # ifndef ICONV_CONST
97 #  define ICONV_CONST @ICONV_CONST@
98 # endif
99 #elif defined GNULIB_POSIXCHECK
100 # undef iconv
101 # if HAVE_RAW_DECL_ICONV
102 _GL_WARN_ON_USE (iconv, "iconv is not working correctly everywhere - "
103                  "use gnulib module iconv for portability");
104 # endif
105 #endif
106
107 #if @GNULIB_ICONV@
108 # if @REPLACE_ICONV@
109 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
110 #   define iconv_close rpl_iconv_close
111 #  endif
112 _GL_FUNCDECL_RPL (iconv_close, int, (iconv_t cd));
113 _GL_CXXALIAS_RPL (iconv_close, int, (iconv_t cd));
114 # else
115 _GL_CXXALIAS_SYS (iconv_close, int, (iconv_t cd));
116 # endif
117 _GL_CXXALIASWARN (iconv_close);
118 #endif
119
120
121 #endif /* _@GUARD_PREFIX@_ICONV_H */
122 #endif /* _@GUARD_PREFIX@_ICONV_H */