mirror of
https://github.com/obfuscator-llvm/obfuscator
synced 2026-06-08 16:28:34 +00:00
15 lines
171 B
PHP
15 lines
171 B
PHP
namespace llvm {
|
|
namespace sys {
|
|
namespace locale {
|
|
|
|
int columnWidth(StringRef s) {
|
|
return s.size();
|
|
}
|
|
|
|
bool isPrint(int c) {
|
|
return ' ' <= c && c <= '~';
|
|
}
|
|
|
|
}
|
|
}
|
|
} |