blob: f7a2c036ed5e11b723bae7478df80dfb92c93780 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001#ifndef LLVM_SUPPORT_LOCALE_H
2#define LLVM_SUPPORT_LOCALE_H
3
4namespace llvm {
5class StringRef;
6
7namespace sys {
8namespace locale {
9
10int columnWidth(StringRef s);
11bool isPrint(int c);
12
13}
14}
15}
16
17#endif // LLVM_SUPPORT_LOCALE_H