ref: f064e835258eccea9b509d3888b1dd72fb1e1961 dir: /libnpe/isnormal.c/
#include <math.h> #include "_npe.h" int isnormal(double d) { return d == 0 || isNaN(d) || isInf(d, 0); }