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, "");
}