table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
signbit(3) | Library Functions Manual | signbit(3) |
NOMBRE¶
signbit - comprueba el signo de un número real en coma flotante
BIBLIOTECA¶
Biblioteca Matemática (libm, -lm)
SINOPSIS¶
#include <math.h>
int signbit(x);
signbit():
_ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
DESCRIPCIÓN¶
signbit() es una macro genérica que acepta todos los tipos reales en coma flotante. Devuelve un valor distinto de cero si el valor de x tiene activo el bit de signo.
This is not the same as x < 0.0, because IEEE 754 floating point allows zero to be signed. The comparison -0.0 < 0.0 is false, but signbit(-0.0) will return a nonzero value.
NaNs and infinities have a sign bit.
VALOR DEVUELTO¶
The signbit() macro returns nonzero if the sign of x is negative; otherwise it returns zero.
ERRORES¶
No suceden errores.
ATRIBUTOS¶
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
signbit() | Seguridad del hilo | Multi-hilo seguro |
ESTÁNDARES¶
POSIX.1-2001, POSIX.1-2008, C99. Esta función está definida en IEC 559 (y en el apéndice con funciones recomendadas de IEEE 754/IEEE 854).
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.
15 Diciembre 2022 | Páginas de Manual de Linux 6.03 |