YouCompleteMe/cpp/llvm/lib/Support/LocaleWindows.inc

15 lines
171 B
PHP
Raw Normal View History

2012-07-05 20:51:06 -04:00
namespace llvm {
namespace sys {
namespace locale {
int columnWidth(StringRef s) {
return s.size();
}
bool isPrint(int c) {
return ' ' <= c && c <= '~';
}
}
}
}