Sign in
coral
/
linux-mtk
/
bb3bac2ca9a3a5b7fa601781adf70167a0449d75
/
.
/
scripts
/
check-lc_ctype.c
blob: 9097ff5449fb7a4a54e72b87a9b74b966422ebb3 [
file
]
/*
* 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
,
""
);
}