llvm-6502/lib/Support/LocaleWindows.inc
2012-04-17 20:03:03 +00:00

15 lines
171 B
C++

namespace llvm {
namespace sys {
namespace locale {
int columnWidth(StringRef s) {
return s.size();
}
bool isPrint(int c) {
return ' ' <= c && c <= '~';
}
}
}
}