shithub: scc

ref: 5ac3a0d4c1a9d7e4d3912c4770084b885007aca6
dir: /src/libc/locale/setlocale.c/

View raw version
#include <locale.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;
}