Files
obfuscator-llvm-obfuscator/lib/Support/LocaleGeneric.inc
T
2013-12-26 14:37:53 +01:00

18 lines
183 B
PHP

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