Seth Cantrell | fdc97cd | 2012-04-17 20:03:03 +0000 | [diff] [blame] | 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 | } | ||||
David Blaikie | b0616a5 | 2012-04-17 23:46:51 +0000 | [diff] [blame] | 17 | } |