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

18 lines
183 B
PHP
Raw Normal View History

#include <cwctype>
namespace llvm {
namespace sys {
namespace locale {
int columnWidth(StringRef s) {
return s.size();
}
bool isPrint(int c) {
return iswprint(c);
}
}
}
}