28e429c0cb7d876dadaa4afc9ceb2cf4cbafb562
[oota-llvm.git] / lib / Support / LocaleWindows.inc
1 namespace llvm {
2 namespace sys {
3 namespace locale {
4
5 int columnWidth(StringRef s) {
6     return s.size();
7 }
8
9 bool isPrint(int c) {
10     return ' ' <= c && c <= '~';
11 }
12
13 }
14 }
15 }