aboutsummaryrefslogblamecommitdiffstats
path: root/contrib/libs/llvm14/include/llvm/Support/Locale.h
blob: e830d2f9bd616403e006b4d2d837dd398b71ba05 (plain) (tree)


























                                                   
#pragma once

#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif

#ifndef LLVM_SUPPORT_LOCALE_H
#define LLVM_SUPPORT_LOCALE_H

namespace llvm {
class StringRef;

namespace sys {
namespace locale {

int columnWidth(StringRef s);
bool isPrint(int c);

}
}
}

#endif // LLVM_SUPPORT_LOCALE_H

#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif