summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Locale.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/Locale.h')
-rw-r--r--include/llvm/Support/Locale.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/llvm/Support/Locale.h b/include/llvm/Support/Locale.h
new file mode 100644
index 0000000000..b0f1295802
--- /dev/null
+++ b/include/llvm/Support/Locale.h
@@ -0,0 +1,17 @@
+#ifndef LLVM_SUPPORT_LOCALE
+#define LLVM_SUPPORT_LOCALE
+
+#include "llvm/ADT/StringRef.h"
+
+namespace llvm {
+namespace sys {
+namespace locale {
+
+int columnWidth(StringRef s);
+bool isPrint(int c);
+
+}
+}
+}
+
+#endif // LLVM_SUPPORT_LOCALE