1#include <cwctype>
2
3namespace llvm {
4namespace sys {
5namespace locale {
6
7int columnWidth(StringRef s) {
8    return s.size();
9}
10
11bool isPrint(int c) {
12    return iswprint(c);
13}
14
15}
16}
17}
18