tst-mbswcs4.c 2.0 KB

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