]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/llvm/include/llvm/Support/Locale.h
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / contrib / llvm / include / llvm / Support / Locale.h
1 #ifndef LLVM_SUPPORT_LOCALE_H
2 #define LLVM_SUPPORT_LOCALE_H
3
4 #include "llvm/ADT/StringRef.h"
5
6 namespace llvm {
7 namespace sys {
8 namespace locale {
9
10 int columnWidth(StringRef s);
11 bool isPrint(int c);
12
13 }
14 }
15 }
16
17 #endif // LLVM_SUPPORT_LOCALE_H