mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
8cb1bde617
llvm-svn: 154962
18 lines
183 B
C++
18 lines
183 B
C++
#include <cwctype>
|
|
|
|
namespace llvm {
|
|
namespace sys {
|
|
namespace locale {
|
|
|
|
int columnWidth(StringRef s) {
|
|
return s.size();
|
|
}
|
|
|
|
bool isPrint(int c) {
|
|
return iswprint(c);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|