Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
238 B

  1. #ifndef LLVM_SUPPORT_LOCALE_H
  2. #define LLVM_SUPPORT_LOCALE_H
  3. #include "llvm/ADT/StringRef.h"
  4. namespace llvm {
  5. namespace sys {
  6. namespace locale {
  7. int columnWidth(StringRef s);
  8. bool isPrint(int c);
  9. }
  10. }
  11. }
  12. #endif // LLVM_SUPPORT_LOCALE_H