spawn: Use special invocation for <spawn.h> on OS/2 kLIBC.
[gnulib.git] / tests / test-c32rtomb.c
blob77c2bad78845cb7c076ce87f35455f2b35ab33b8
1 /* Test of conversion of wide character to multibyte character.
2 Copyright (C) 2008-2021 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. */
19 #include <config.h>
21 #include <uchar.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (c32rtomb, size_t, (char *, char32_t, mbstate_t *));
26 #include <locale.h>
27 #include <stdlib.h>
28 #include <string.h>
30 #include "macros.h"
32 /* Check the multibyte character s[0..n-1]. */
33 static void
34 check_character (const char *s, size_t n)
36 mbstate_t state;
37 char32_t wc;
38 char buf[64];
39 int iret;
40 size_t ret;
42 memset (&state, '\0', sizeof (mbstate_t));
43 wc = (char32_t) 0xBADFACE;
44 iret = mbrtoc32 (&wc, s, n, &state);
45 ASSERT (iret == n);
47 ret = c32rtomb (buf, wc, NULL);
48 ASSERT (ret == n);
49 ASSERT (memcmp (buf, s, n) == 0);
51 /* Test special calling convention, passing a NULL pointer. */
52 ret = c32rtomb (NULL, wc, NULL);
53 ASSERT (ret == 1);
56 int
57 main (int argc, char *argv[])
59 char buf[64];
60 size_t ret;
62 /* configure should already have checked that the locale is supported. */
63 if (setlocale (LC_ALL, "") == NULL)
64 return 1;
66 /* Test NUL character. */
68 buf[0] = 'x';
69 ret = c32rtomb (buf, 0, NULL);
70 ASSERT (ret == 1);
71 ASSERT (buf[0] == '\0');
74 /* Test single bytes. */
76 int c;
78 for (c = 0; c < 0x100; c++)
79 switch (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 '>':
88 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':
94 case 'Z':
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);
104 ASSERT (ret == 1);
105 ASSERT (buf[0] == (char) c);
106 break;
110 /* Test special calling convention, passing a NULL pointer. */
112 ret = c32rtomb (NULL, '\0', NULL);
113 ASSERT (ret == 1);
114 ret = c32rtomb (NULL, btoc32 ('x'), NULL);
115 ASSERT (ret == 1);
118 if (argc > 1)
119 switch (argv[1][0])
121 case '1':
122 /* Locale encoding is ISO-8859-1 or ISO-8859-15. */
124 const char input[] = "B\374\337er"; /* "Büßer" */
126 check_character (input + 1, 1);
127 check_character (input + 2, 1);
129 return 0;
131 case '2':
132 /* Locale encoding is UTF-8. */
134 const char input[] = "s\303\274\303\237\360\237\230\213!"; /* "süß😋!" */
136 check_character (input + 1, 2);
137 check_character (input + 3, 2);
138 check_character (input + 5, 4);
140 return 0;
142 case '3':
143 /* Locale encoding is EUC-JP. */
145 const char input[] = "<\306\374\313\334\270\354>"; /* "<日本語>" */
147 check_character (input + 1, 2);
148 check_character (input + 3, 2);
149 check_character (input + 5, 2);
151 return 0;
153 case '4':
154 /* Locale encoding is GB18030. */
156 const char input[] = "s\250\271\201\060\211\070\224\071\375\067!"; /* "süß😋!" */
158 check_character (input + 1, 2);
159 check_character (input + 3, 4);
160 check_character (input + 7, 4);
162 return 0;
164 case '5':
165 /* C locale; tested above. */
166 return 0;
169 return 1;