1#ifndef LLVM_SUPPORT_LOCALE_H
2#define LLVM_SUPPORT_LOCALE_H
3
4#include "llvm/Support/Compiler.h"
5
6namespace llvm {
7class StringRef;
8
9namespace sys {
10namespace locale {
11
12LLVM_ABI int columnWidth(StringRef s);
13LLVM_ABI bool isPrint(int c);
14}
15}
16}
17
18#endif // LLVM_SUPPORT_LOCALE_H
19