mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 05:31:06 +00:00
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
|