tst_wcwidth.c 595 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. WCWIDTH: int wcwidth (wchar_t wc);
  3. */
  4. #define TST_FUNCTION wcwidth
  5. #include "tsp_common.c"
  6. #include "dat_wcwidth.c"
  7. int
  8. tst_wcwidth (FILE * fp, int debug_flg)
  9. {
  10. TST_DECL_VARS (int);
  11. wchar_t wc;
  12. TST_DO_TEST (wcwidth)
  13. {
  14. TST_HEAD_LOCALE (wcwidth, S_WCWIDTH);
  15. TST_DO_REC (wcwidth)
  16. {
  17. TST_GET_ERRET (wcwidth);
  18. wc = TST_INPUT (wcwidth).wc;
  19. ret = wcwidth (wc);
  20. if (debug_flg)
  21. {
  22. fprintf (stdout, "wcwidth() [ %s : %d ] ret = %d\n", locale,
  23. rec + 1, ret);
  24. }
  25. TST_IF_RETURN (S_WCWIDTH)
  26. {
  27. }
  28. }
  29. }
  30. return err_count;
  31. }