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
17 lines
238 B
#ifndef LLVM_SUPPORT_LOCALE_H
|
|
#define LLVM_SUPPORT_LOCALE_H
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
namespace llvm {
|
|
namespace sys {
|
|
namespace locale {
|
|
|
|
int columnWidth(StringRef s);
|
|
bool isPrint(int c);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif // LLVM_SUPPORT_LOCALE_H
|