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