ref: fc3cb31e545ef5afe71e155275e2bb454491e0d1
dir: /lib/c/localeconv.c/
#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; }