Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
ec4e85e3364f50802f2007e4b1e23661d4610366
/
.
/
lib
/
Support
/
LocaleWindows.inc
blob: 6827ac15a1ac25d0c0c89581414455b53bd3ea19 [
file
] [
log
] [
blame
]
namespace
llvm
{
namespace
sys
{
namespace
locale
{
int
columnWidth
(
StringRef
s
)
{
return
s
.
size
();
}
bool
isPrint
(
int
c
)
{
return
' '
<=
c
&&
c
<=
'~'
;
}
}
}
}