tst-mbswcs2.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Test restarting behaviour of mbsnrtowcs.
  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>.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library 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 GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, see
  15. <http://www.gnu.org/licenses/>. */
  16. #include <stdio.h>
  17. #include <string.h>
  18. #include <wchar.h>
  19. #include <locale.h>
  20. #define show(expr, nexp, wcexp, end) \
  21. n = expr; \
  22. printf (#expr " -> %Zd", n); \
  23. printf (", wc = %lu, src = buf+%d", (unsigned long int) wc, \
  24. src - (const char *) buf); \
  25. if (n != (size_t) nexp || wc != wcexp || src != (const char *) (end)) \
  26. { \
  27. printf (", expected %Zd and %lu and buf+%d", nexp, \
  28. (unsigned long int) wcexp, (end) - buf); \
  29. result = 1; \
  30. } \
  31. putc ('\n', stdout)
  32. int
  33. main (void)
  34. {
  35. unsigned char buf[6] = { 0x25, 0xe2, 0x82, 0xac, 0xce, 0xbb };
  36. mbstate_t state;
  37. const char *src;
  38. wchar_t wc = 42;
  39. size_t n;
  40. int result = 0;
  41. const char *used_locale;
  42. setlocale (LC_CTYPE,"de_DE.UTF-8");
  43. /* Double check. */
  44. used_locale = setlocale (LC_CTYPE, NULL);
  45. printf ("used locale: \"%s\"\n", used_locale);
  46. result = strcmp (used_locale, "de_DE.UTF-8");
  47. memset (&state, '\0', sizeof (state));
  48. src = (const char *) buf;
  49. show (mbsnrtowcs (&wc, &src, 1, 1, &state), 1, 37, buf + 1);
  50. show (mbsnrtowcs (&wc, &src, 3, 1, &state), 1, 8364, buf + 4);
  51. show (mbsnrtowcs (&wc, &src, 1, 1, &state), 0, 8364, buf + 5);
  52. show (mbsnrtowcs (&wc, &src, 1, 1, &state), 1, 955, buf + 6);
  53. return result;
  54. }