cb4dff8563
branch. This brings us very close to the 3.1 release, which is planned for May 14th. MFC after: 2 weeks
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);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|