#include #include "_locale.h" #include "_safety.h" #undef localeconv /** return locale-specific information **/ struct lconv * localeconv(void) { SIGNAL_SAFE(0); /* RETURN_SUCCESS(a pointer to a filled-in STRUCTDEF(lconv) for the current locale); */ return &(__get_locale()->lconv); } /*** fills in a STRUCTDEF(lconv) in the current locale for use in formatting numbers and monetary values. ***/ /* LC_MONETARY LC_NUMERIC STDC(1) */