1 /* Test of conversion of wide character to multibyte character.
2 Copyright (C) 2008-2025 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2008. */
23 #include "signature.h"
24 SIGNATURE_CHECK (c32rtomb
, size_t, (char *, char32_t
, mbstate_t *));
32 /* Check the multibyte character s[0..n-1]. */
34 check_character (const char *s
, size_t n
)
42 memset (&state
, '\0', sizeof (mbstate_t));
43 wc
= (char32_t
) 0xBADFACE;
44 iret
= mbrtoc32 (&wc
, s
, n
, &state
);
47 ret
= c32rtomb (buf
, wc
, NULL
);
49 ASSERT (memcmp (buf
, s
, n
) == 0);
51 /* Test special calling convention, passing a NULL pointer. */
52 ret
= c32rtomb (NULL
, wc
, NULL
);
57 main (int argc
, char *argv
[])
62 /* configure should already have checked that the locale is supported. */
63 if (setlocale (LC_ALL
, "") == NULL
)
66 /* Test NUL character. */
69 ret
= c32rtomb (buf
, 0, NULL
);
71 ASSERT (buf
[0] == '\0');
74 /* Test single bytes. */
78 for (c
= 0; c
< 0x100; c
++)
81 case '\t': case '\v': case '\f':
82 case ' ': case '!': case '"': case '#': case '%':
83 case '&': case '\'': case '(': case ')': case '*':
84 case '+': case ',': case '-': case '.': case '/':
85 case '0': case '1': case '2': case '3': case '4':
86 case '5': case '6': case '7': case '8': case '9':
87 case ':': case ';': case '<': case '=': case '>':
89 case 'A': case 'B': case 'C': case 'D': case 'E':
90 case 'F': case 'G': case 'H': case 'I': case 'J':
91 case 'K': case 'L': case 'M': case 'N': case 'O':
92 case 'P': case 'Q': case 'R': case 'S': case 'T':
93 case 'U': case 'V': case 'W': case 'X': case 'Y':
95 case '[': case '\\': case ']': case '^': case '_':
96 case 'a': case 'b': case 'c': case 'd': case 'e':
97 case 'f': case 'g': case 'h': case 'i': case 'j':
98 case 'k': case 'l': case 'm': case 'n': case 'o':
99 case 'p': case 'q': case 'r': case 's': case 't':
100 case 'u': case 'v': case 'w': case 'x': case 'y':
101 case 'z': case '{': case '|': case '}': case '~':
102 /* c is in the ISO C "basic character set". */
103 ret
= c32rtomb (buf
, btoc32 (c
), NULL
);
105 ASSERT (buf
[0] == (char) c
);
110 /* Test special calling convention, passing a NULL pointer. */
112 ret
= c32rtomb (NULL
, '\0', NULL
);
114 ret
= c32rtomb (NULL
, btoc32 ('x'), NULL
);
122 /* C locale; tested above. */
123 return test_exit_status
;
126 /* Locale encoding is ISO-8859-1 or ISO-8859-15. */
128 const char input
[] = "B\374\337er"; /* "Büßer" */
130 check_character (input
+ 1, 1);
131 check_character (input
+ 2, 1);
133 return test_exit_status
;
136 /* Locale encoding is UTF-8. */
138 const char input
[] = "s\303\274\303\237\360\237\230\213!"; /* "süß😋!" */
140 check_character (input
+ 1, 2);
141 check_character (input
+ 3, 2);
142 check_character (input
+ 5, 4);
144 return test_exit_status
;
147 /* Locale encoding is EUC-JP. */
149 const char input
[] = "<\306\374\313\334\270\354>"; /* "<日本語>" */
151 check_character (input
+ 1, 2);
152 check_character (input
+ 3, 2);
153 check_character (input
+ 5, 2);
155 return test_exit_status
;
158 /* Locale encoding is GB18030. */
159 #if (defined __GLIBC__ && __GLIBC__ == 2 && __GLIBC_MINOR__ >= 13 && __GLIBC_MINOR__ <= 15) || (GL_CHAR32_T_IS_UNICODE && (defined __FreeBSD__ || defined __NetBSD__ || defined __sun))
160 if (test_exit_status
!= EXIT_SUCCESS
)
161 return test_exit_status
;
162 fputs ("Skipping test: The GB18030 converter in this system's iconv is broken.\n", stderr
);
166 const char input
[] = "s\250\271\201\060\211\070\224\071\375\067!"; /* "süß😋!" */
168 check_character (input
+ 1, 2);
169 check_character (input
+ 3, 4);
170 check_character (input
+ 7, 4);
172 return test_exit_status
;