mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
1cc53344a6
llvm-svn: 154944
15 lines
171 B
C++
15 lines
171 B
C++
namespace llvm {
|
|
namespace sys {
|
|
namespace locale {
|
|
|
|
int columnWidth(StringRef s) {
|
|
return s.size();
|
|
}
|
|
|
|
bool isPrint(int c) {
|
|
return ' ' <= c && c <= '~';
|
|
}
|
|
|
|
}
|
|
}
|
|
} |