]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/llvm/lib/Support/LocaleWindows.inc
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / llvm / 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 }