tst_swscanf.c 953 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <wchar.h>
  4. int
  5. main (int argc, char *argv[])
  6. {
  7. const wchar_t in[] = L"7 + 35 is 42";
  8. size_t n;
  9. int a, b, c;
  10. int result = 0;
  11. char buf1[20];
  12. wchar_t wbuf2[20];
  13. char buf3[20];
  14. char c4;
  15. wchar_t wc5;
  16. puts ("Test 1");
  17. a = b = c = 0;
  18. n = swscanf (in, L"%d + %d is %d", &a, &b, &c);
  19. if (n != 3 || a + b != c || c != 42)
  20. {
  21. printf ("*** FAILED, n = %Zu, a = %d, b = %d, c = %d\n", n, a, b, c);
  22. result = 1;
  23. }
  24. puts ("Test 2");
  25. n = swscanf (L"one two three !!", L"%s %S %s %c%C",
  26. buf1, wbuf2, buf3, &c4, &wc5);
  27. if (n != 5 || strcmp (buf1, "one") != 0 || wcscmp (wbuf2, L"two") != 0
  28. || strcmp (buf3, "three") != 0 || c4 != '!' || wc5 != L'!')
  29. {
  30. printf ("*** FAILED, n = %Zu, buf1 = \"%s\", wbuf2 = L\"%S\", buf3 = \"%s\", c4 = '%c', wc5 = L'%C'\n",
  31. n, buf1, wbuf2, buf3, c4, (wint_t) wc5);
  32. result = 1;
  33. }
  34. return result;
  35. }