tgn_locdef.h 832 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef TGN_LOCDEF_H
  2. #define TGN_LOCDEF_H
  3. /* Defines for all locales used in the suite. */
  4. /* POSIX C locale. */
  5. #define TST_LOC_C "C"
  6. /* German locale with ISO-8859-1. */
  7. #define TST_LOC_de "de_DE.ISO-8859-1"
  8. /* For US we use ANSI_X3.4-1968 (ASCII). Changed in en_US.ISO-8859-1 */
  9. #define TST_LOC_en "en_US.ISO-8859-1"
  10. #define TST_LOC_enUS TST_LOC_C
  11. /* NOTE: ja_JP.EUC-JP locale isn't supported into the uClibc!
  12. UTF-8 is the only multibyte codeset supported. */
  13. /* Japanese locale with EUC-JP. */
  14. #if 0
  15. #define TST_LOC_eucJP "ja_JP.EUC-JP"
  16. #endif
  17. /* Japanese locale with UTF-8. */
  18. #define TST_LOC_ja_UTF8 "ja_JP.UTF-8"
  19. /* German locale with UTF-8. */
  20. #define TST_LOC_de_UTF8 "de_DE.UTF-8"
  21. /* End marker - must appear in each table as last entry. */
  22. #define TST_LOC_end "lastEntry"
  23. #endif /* TGN_LOCDEF_H */