1 /* Test restarting behaviour of mbrtowc.
2 Copyright (C) 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Bruno Haible <haible@ilog.fr>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
26 #define show(expr, nexp, wcexp) \
28 printf (#expr " -> %Zd", n); \
29 printf (", wc = %lu", (unsigned long int) wc); \
30 if (n != (size_t) nexp || wc != wcexp) \
32 printf (", expected %Zd and %lu", nexp, (unsigned long int) wcexp); \
40 unsigned char buf
[6] = { 0x25, 0xe2, 0x82, 0xac, 0xce, 0xbb };
45 const char *used_locale
;
47 setlocale (LC_CTYPE
, "de_DE.UTF-8");
49 used_locale
= setlocale (LC_CTYPE
, NULL
);
50 printf ("used locale: \"%s\"\n", used_locale
);
51 result
= strcmp (used_locale
, "de_DE.UTF-8");
53 memset (&state
, '\0', sizeof (state
));
55 show (mbrtowc (&wc
, buf
+ 0, 1, &state
), 1, 37);
56 show (mbrtowc (&wc
, buf
+ 1, 1, &state
), -2, 37);
57 show (mbrtowc (&wc
, buf
+ 2, 3, &state
), 2, 8364);
58 show (mbrtowc (&wc
, buf
+ 4, 1, &state
), -2, 8364);
59 show (mbrtowc (&wc
, buf
+ 5, 1, &state
), 1, 955);
60 show (mbrtowc (&wc
, buf
+ 5, 1, &state
), -1, 955);