Man page - ecvt_r(3)

Packages contains this manual

Available languages:

en fr es ja ru ro de

Manual

ecvt_r

NOMBRE
BIBLIOTECA
SINOPSIS
DESCRIPCIÓN
VALOR DEVUELTO
ATRIBUTOS
ESTÁNDARES
NOTAS
VÉASE TAMBIÉN
TRADUCCIÓN

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 len );
[[deprecated]] int fcvt_r(double
number , int ndigits ,
int *restrict
decpt , int *restrict sign ,
char *restrict
buf , size_t len );

[[deprecated]] int qecvt_r(long double number , int ndigits ,
int *restrict
decpt , int *restrict sign ,
char *restrict
buf , size_t len );
[[deprecated]] int qfcvt_r(long double
number , int ndigits ,
int *restrict
decpt , int *restrict sign ,
char *restrict
buf , size_t len );

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

DESCRIPCIÓN

Las funciones ecvt_r (), fcvt_r (), qecvt_r () y qfcvt_r () son idénticas a ecvt (3), fcvt (3), qecvt (3) y qfcvt (3), respectivamente, salvo que no devuelven su resultado en un buffer estático, sino que en su lugar usan el buffer pasado buf de tamaño len . Véase ecvt (3) y 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).

Image grohtml-3957881-1.png

ESTÁNDARES

GNU.

NOTAS

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

VÉASE TAMBIÉN

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

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 .