hanchenye-llvm-project/llvm/lib/Support/LocaleWindows.inc

16 lines
172 B
C++

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