Synopsis
#define isinf(x) (sizeof(x) == sizeof(float) ? __float32_isinf(x) : __float64_isinf(x))
Description

isinf determines whether x is an infinity (positive or negative). The determination is based on the type of the argument.