https://github.com/torvalds/linux
Raw File
Tip revision: 5edb56491d4812c42175980759da53388e5d86f5 authored by Linus Torvalds on 12 June 2016, 14:20:35 UTC
Linux 4.7-rc3
Tip revision: 5edb564
check-lc_ctype.c
/*
 * 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, "");
}
back to top