Sign in
android
/
kernel
/
common
/
e84587250ab7e38b7d85e93a8c317e065e5c0a1f
/
.
/
scripts
/
check-lc_ctype.c
blob: 9097ff5449fb7a4a54e72b87a9b74b966422ebb3 [
file
] [
log
] [
blame
]
/*
* Check that a specified locale works as LC_CTYPE. Used by the
* DocBook build system to probe for C.UTF-8 support.
*/
#include
<locale.h>
int
main
(
void
)
{
return
!
setlocale
(
LC_CTYPE
,
""
);
}