qecvt(3) Library Functions Manual qecvt(3) NOMBRE qecvt, qfcvt, qgcvt - convierten un numero en coma flotante a una cadena BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include [[deprecated]] char *qecvt(long double number, int ndigits, int *restrict decpt, int *restrict sign); [[deprecated]] char *qfcvt(long double number, int ndigits, int *restrict decpt, int *restrict sign); [[deprecated]] char *qgcvt(long double number, int ndigit, char *buf); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): qecvt(), qfcvt(), qgcvt(): Since glibc 2.19: _DEFAULT_SOURCE In glibc up to and including 2.19: _SVID_SOURCE DESCRIPCION Las funciones qecvt(), qfcvt() y qgcvt() son identicas a ecvt(3), fcvt(3) y gcvt(3) respectivamente, salvo que estas usan un argumento number de tipo long double. Vease ecvt(3) y gcvt(3). ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +--------------------------+--------------------+----------------------+ |Interfaz | Atributo | Valor | +--------------------------+--------------------+----------------------+ |qecvt() | Seguridad del hilo | MT-Unsafe race:qecvt | +--------------------------+--------------------+----------------------+ |qfcvt() | Seguridad del hilo | MT-Unsafe race:qfcvt | +--------------------------+--------------------+----------------------+ |qgcvt() | Seguridad del hilo | Multi-hilo seguro | +--------------------------+--------------------+----------------------+ ESTANDARES None. HISTORIAL SVr4, SunOS, GNU. Estas funciones estan obsoletas. En su lugar, se recomienda el uso de snprintf(3). VEASE TAMBIEN ecvt(3), ecvt_r(3), gcvt(3), sprintf(3) 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 qecvt(3)