forked from OSchip/llvm-project
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 <= '~';
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|