Sign in
ara-mdk
/
platform
/
external
/
llvm
/
3797adb94fdc6b747cb0e97a64b15b931f2533b8
/
.
/
lib
/
Support
/
LocaleGeneric.inc
blob: 278deee3e4dd323f434a550e35c518641cd830bf [
file
] [
log
] [
blame
]
#include
<cwctype>
namespace
llvm
{
namespace
sys
{
namespace
locale
{
int
columnWidth
(
StringRef
s
)
{
return
s
.
size
();
}
bool
isPrint
(
int
c
)
{
return
iswprint
(
c
);
}
}
}
}