uchar.c 297 B

123456789101112131415161718192021222324
  1. #if defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__
  2. #include <uchar.h>
  3. #include "test.h"
  4. void test_uchar_h(void)
  5. {
  6. mbstate_t mbstate;
  7. size_t size;
  8. char16_t char16;
  9. char32_t char32;
  10. testing_header("uchar.h");
  11. /* TODO */
  12. testing_end();
  13. }
  14. #else
  15. void test_uchar_h(void)
  16. {
  17. }
  18. #endif