ecvt_r(3) Library Functions Manual ecvt_r(3)

ecvt_r, fcvt_r, qecvt_r, qfcvt_r - convierten un número en coma flotante a una cadena

Biblioteca Estándar C (libc-lc)

#include <stdlib.h>
[[deprecated]] int ecvt_r(double number, int ndigits,
                          int *restrict decpt, int *restrict sign,
                          char *restrict buf, size_t size);
[[deprecated]] int fcvt_r(double number, int ndigits,
                          int *restrict decpt, int *restrict sign,
                          char *restrict buf, size_t size);
[[deprecated]] int qecvt_r(long double number, int ndigits,
                          int *restrict decpt, int *restrict sign,
                          char *restrict buf, size_t size);
[[deprecated]] int qfcvt_r(long double number, int ndigits,
                          int *restrict decpt, int *restrict sign,
                          char *restrict buf, size_t size);
Requisitos de Macros de Prueba de Características para glibc (véase feature_test_macros(7)):

ecvt_r(), fcvt_r(), qecvt_r(), qfcvt_r():

    /* glibc >= 2.19: */ _DEFAULT_SOURCE
        || /* glibc <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE

The functions ecvt_r(), fcvt_r(), qecvt_r(), and qfcvt_r() are identical to ecvt(3), fcvt(3), qecvt(3), and qfcvt(3), respectively, except that they do not return their result in a static buffer, but instead use the supplied buf of size size. See ecvt(3) and qecvt(3).

These functions return 0 on success, and -1 otherwise.

Para obtener una explicación de los términos usados en esta sección, véase attributes(7).

Interfaz Atributo Valor
ecvt_r(), fcvt_r(), qecvt_r(), qfcvt_r() Seguridad del hilo Multi-hilo seguro

GNU.

Estas funciones están obsoletas. En su lugar se recomienda sprintf(3).

ecvt(3), qecvt(3), sprintf(3)

La traducción al español de esta página del manual fue creada por Miguel Pérez Ibars <mpi79470@alu.um.es>

Esta traducción es documentación libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.

Si encuentra algún error en la traducción de esta página del manual, envíe un correo electrónico a debian-l10n-spanish@lists.debian.org.

17 Noviembre 2024 Páginas de Manual de Linux 6.12