diff options
Diffstat (limited to 'third_party/llvm-project/include/llvm/Support/Locale.h')
-rw-r--r-- | third_party/llvm-project/include/llvm/Support/Locale.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/llvm-project/include/llvm/Support/Locale.h b/third_party/llvm-project/include/llvm/Support/Locale.h new file mode 100644 index 000000000..f7a2c036e --- /dev/null +++ b/third_party/llvm-project/include/llvm/Support/Locale.h @@ -0,0 +1,17 @@ +#ifndef LLVM_SUPPORT_LOCALE_H +#define LLVM_SUPPORT_LOCALE_H + +namespace llvm { +class StringRef; + +namespace sys { +namespace locale { + +int columnWidth(StringRef s); +bool isPrint(int c); + +} +} +} + +#endif // LLVM_SUPPORT_LOCALE_H |