Locale.h 392 B

12345678910111213141516171819202122232425262728
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. #ifndef LLVM_SUPPORT_LOCALE_H
  7. #define LLVM_SUPPORT_LOCALE_H
  8. namespace llvm {
  9. class StringRef;
  10. namespace sys {
  11. namespace locale {
  12. int columnWidth(StringRef s);
  13. bool isPrint(int c);
  14. }
  15. }
  16. }
  17. #endif // LLVM_SUPPORT_LOCALE_H
  18. #ifdef __GNUC__
  19. #pragma GCC diagnostic pop
  20. #endif