Support compiling without -loldnames on native Windows.
[gnulib.git] / tests / unistr / test-u32-mblen.c
blobee2a232e15764165f879579ffaca9ad11b638d39
1 /* Test of u32_mblen() function.
2 Copyright (C) 2010-2020 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>, 2010. */
19 #include <config.h>
21 #include "unistr.h"
23 #include "macros.h"
25 int
26 main ()
28 int ret;
30 /* Test zero-length input. */
32 static const uint32_t input[] = { 0 };
33 ret = u32_mblen (input, 0);
34 ASSERT (ret == -1);
37 /* Test NUL unit input. */
39 static const uint32_t input[] = { 0 };
40 ret = u32_mblen (input, 1);
41 ASSERT (ret == 0);
44 /* Test ISO 646 unit input. */
46 ucs4_t c;
47 uint32_t buf[1];
49 for (c = 1; c < 0x80; c++)
51 buf[0] = c;
52 ret = u32_mblen (buf, 1);
53 ASSERT (ret == 1);
57 /* Test BMP unit input. */
59 static const uint32_t input[] = { 0x20AC };
60 ret = u32_mblen (input, 1);
61 ASSERT (ret == 1);
64 /* Test non-BMP unit input. */
66 static const uint32_t input[] = { 0x1D51F };
67 ret = u32_mblen (input, 1);
68 ASSERT (ret == 1);
71 /* Test incomplete/invalid 1-unit input. */
73 static const uint32_t input[] = { 0x340000 };
74 ret = u32_mblen (input, 1);
75 ASSERT (ret == -1);
78 return 0;