diff options
Diffstat (limited to 'clang-r353983/include/llvm/Support/Locale.h')
| -rw-r--r-- | clang-r353983/include/llvm/Support/Locale.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/clang-r353983/include/llvm/Support/Locale.h b/clang-r353983/include/llvm/Support/Locale.h new file mode 100644 index 00000000..f7a2c036 --- /dev/null +++ b/clang-r353983/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 |
