localeconv(3) Library Functions Manual localeconv(3) NOMBRE localeconv - obtiene informacion sobre formateo de cantidades numericas BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include struct lconv *localeconv(void); DESCRIPCION The localeconv() function returns a pointer to a struct lconv for the current locale. This structure is shown in locale(7), and contains all values associated with the locale categories LC_NUMERIC and LC_MONETARY. Programs may also use the functions printf(3) and strfmon(3), which behave according to the actual locale in use. VALOR DEVUELTO The localeconv() function returns a pointer to a filled in struct lconv. This structure may be (in glibc, is) statically allocated, and may be overwritten by subsequent calls. According to POSIX, the caller should not modify the contents of this structure. The localeconv() function always succeeds. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-------------+--------------------+-----------------------------------+ |Interfaz | Atributo | Valor | +-------------+--------------------+-----------------------------------+ |localeconv() | Seguridad del hilo | MT-Unsafe race:localeconv locale | +-------------+--------------------+-----------------------------------+ ESTANDARES C11. HISTORIAL C89. ERRORES La familia de funciones printf(3) puede respetar o no la localizacion en curso. VEASE TAMBIEN locale(1), localedef(1), isalpha(3), nl_langinfo(3), setlocale(3), strcoll(3), strftime(3), locale(7) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Miguel Perez Ibars Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 localeconv(3)