mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
1cc53344a6
llvm-svn: 154944
18 lines
232 B
C++
18 lines
232 B
C++
#ifndef LLVM_SUPPORT_LOCALE
|
|
#define LLVM_SUPPORT_LOCALE
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
namespace llvm {
|
|
namespace sys {
|
|
namespace locale {
|
|
|
|
int columnWidth(StringRef s);
|
|
bool isPrint(int c);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif // LLVM_SUPPORT_LOCALE
|