| 1 | #ifndef LLVM_SUPPORT_LOCALE_H |
|---|---|
| 2 | #define LLVM_SUPPORT_LOCALE_H |
| 3 | |
| 4 | #include "llvm/Support/Compiler.h" |
| 5 | |
| 6 | namespace llvm { |
| 7 | class StringRef; |
| 8 | |
| 9 | namespace sys { |
| 10 | namespace locale { |
| 11 | |
| 12 | LLVM_ABI int columnWidth(StringRef s); |
| 13 | LLVM_ABI bool isPrint(int c); |
| 14 | } |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | #endif // LLVM_SUPPORT_LOCALE_H |
| 19 |