Locale.cpp 377 B

12345678910111213141516171819
  1. #include "llvm/Support/Locale.h"
  2. #include "llvm/ADT/StringRef.h"
  3. #include "llvm/Support/Unicode.h"
  4. namespace llvm {
  5. namespace sys {
  6. namespace locale {
  7. int columnWidth(StringRef Text) {
  8. return llvm::sys::unicode::columnWidthUTF8(Text);
  9. }
  10. bool isPrint(int UCS) {
  11. return llvm::sys::unicode::isPrintable(UCS);
  12. }
  13. } // namespace locale
  14. } // namespace sys
  15. } // namespace llvm