ecvt_r(3) | Library Functions Manual | ecvt_r(3) |
NOMBRE
ecvt_r, fcvt_r, qecvt_r, qfcvt_r - convierten un número en coma flotante a una cadena
BIBLIOTECA
Biblioteca Estándar C (libc, -lc)
SINOPSIS
#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);
ecvt_r(), fcvt_r(), qecvt_r(), qfcvt_r():
/* glibc >= 2.19: */ _DEFAULT_SOURCE || /* glibc <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
DESCRIPCIÓN
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).
VALOR DEVUELTO
These functions return 0 on success, and -1 otherwise.
ATRIBUTOS
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 |
ESTÁNDARES
GNU.
NOTAS
Estas funciones están obsoletas. En su lugar se recomienda sprintf(3).
VÉASE TAMBIÉN
TRADUCCIÓN
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 |