shithub: scc

ref: 5fffd4ac0ac75d6ba1d8e978a9c618ede9e5f2e5
dir: /lib/c/setlocale.c/

View raw version
#include <locale.h>
#include <stddef.h>
#undef setlocale

char *
setlocale(int category, const char *locale)
{
	if (category > LC_TIME || category < LC_ALL)
		return NULL;
	if (!locale ||
	    locale[0] == '\0' ||
	    locale[0] == 'C' && locale[1] == '\0') {
		return "C";
	}
	return NULL;
}