1/* 2 * Check that a specified locale works as LC_CTYPE. Used by the 3 * DocBook build system to probe for C.UTF-8 support. 4 */ 5 6#include<locale.h> 7 8intmain(void) 9{10return!setlocale(LC_CTYPE,"");11}
v4.6
1/* 2 * Check that a specified locale works as LC_CTYPE. Used by the 3 * DocBook build system to probe for C.UTF-8 support. 4 */ 5 6#include<locale.h> 7 8intmain(void) 9{10return!setlocale(LC_CTYPE,"");11}