mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +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 <= '~';
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|