shithub: scc

ref: 61d8ab34d1ccd7ffdc3fd0e3fe73bf1a87bf0af6
dir: /src/libc/locale/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;
}