blob: 28e429c0cb7d876dadaa4afc9ceb2cf4cbafb562 [file] [log] [blame]
Seth Cantrellfdc97cd2012-04-17 20:03:03 +00001namespace llvm {
2namespace sys {
3namespace locale {
4
5int columnWidth(StringRef s) {
6 return s.size();
7}
8
9bool isPrint(int c) {
10 return ' ' <= c && c <= '~';
11}
12
13}
14}
Chandler Carruth4334dd92012-11-30 11:45:22 +000015}