Locale.h 239 B

123456789101112131415161718
  1. #ifndef LLVM_SUPPORT_LOCALE_H
  2. #define LLVM_SUPPORT_LOCALE_H
  3. #include "llvm/ADT/StringRef.h"
  4. namespace llvm {
  5. namespace sys {
  6. namespace locale {
  7. int columnWidth(StringRef s);
  8. bool isPrint(int c);
  9. }
  10. }
  11. }
  12. #endif // LLVM_SUPPORT_LOCALE_H