shithub: scc

ref: eb8459e384b8d2597f51e944c4cfff40480c9fff
dir: /lib/c/src/localeconv.c/

View raw version
#include <locale.h>
#include <limits.h>
#undef localeconv

struct lconv *
localeconv(void)
{
	static struct lconv lc = { ".", "", "", "", "", "", "", "", "", "",
	                           CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
	                           CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
	                           CHAR_MAX, CHAR_MAX, CHAR_MAX, CHAR_MAX,
	                           CHAR_MAX, CHAR_MAX };
	return &lc;
}