]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/llvm/lib/Support/LocaleGeneric.inc
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / contrib / llvm / lib / Support / LocaleGeneric.inc
1 #include <cwctype>
2
3 namespace llvm {
4 namespace sys {
5 namespace locale {
6
7 int columnWidth(StringRef s) {
8     return s.size();
9 }
10
11 bool isPrint(int c) {
12     return iswprint(c);
13 }
14
15 }
16 }
17 }