Locale.h revision fdc97cd2c332e5544bd99cefa4070329cc8bf668
1#ifndef LLVM_SUPPORT_LOCALE
2#define LLVM_SUPPORT_LOCALE
3
4#include "llvm/ADT/StringRef.h"
5
6namespace llvm {
7namespace sys {
8namespace locale {
9
10int columnWidth(StringRef s);
11bool isPrint(int c);
12
13}
14}
15}
16
17#endif // LLVM_SUPPORT_LOCALE
18