tst-mbswcs5.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* Test restarting behaviour of wcrtomb.
  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, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. #include <stdio.h>
  18. #include <string.h>
  19. #include <wchar.h>
  20. #include <locale.h>
  21. #define show(expr, nexp, bufexp) \
  22. { \
  23. size_t res = expr; \
  24. printf (#expr " -> %Zd", res); \
  25. dst += res; \
  26. printf (", dst = buf+%td", dst - (char *) buf); \
  27. if (res != nexp || dst != (char *) (bufexp)) \
  28. { \
  29. printf (", expected %Zd and buf+%td", nexp, \
  30. (bufexp) - (unsigned char *) buf); \
  31. result = 1; \
  32. } \
  33. putc ('\n', stdout); \
  34. }
  35. int
  36. main (void)
  37. {
  38. unsigned char buf[7] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
  39. const unsigned char bufcheck[7] = { 0x25, 0xe2, 0x82, 0xac, 0xce, 0xbb, 0 };
  40. const wchar_t srcbuf[4] = { 0x25, 0x20ac, 0x03bb, 0 };
  41. mbstate_t state;
  42. const wchar_t *src;
  43. char *dst;
  44. int result = 0;
  45. const char *used_locale;
  46. setlocale (LC_CTYPE, "de_DE.UTF-8");
  47. /* Double check. */
  48. used_locale = setlocale (LC_CTYPE, NULL);
  49. printf ("used locale: \"%s\"\n", used_locale);
  50. result = strcmp (used_locale, "de_DE.UTF-8");
  51. memset (&state, '\0', sizeof (state));
  52. src = srcbuf;
  53. dst = (char *) buf;
  54. show (wcrtomb (dst, *src++, &state), 1, buf + 1);
  55. show (wcrtomb (dst, *src++, &state), 3, buf + 4);
  56. show (wcrtomb (dst, *src++, &state), 2, buf + 6);
  57. show (wcrtomb (dst, *src, &state), 1, buf + 7);
  58. if (memcmp (buf, bufcheck, 7))
  59. {
  60. puts ("wrong results");
  61. result = 1;
  62. }
  63. return result;
  64. }