ref: 73fca33b06e2ebb61473d295fdd39f8bbf57e4dd dir: /isnanf.c/
#include <u.h> int isnanf(float f) { union { float f; u32int u; }x; x.f = f; return (x.u & (0xff<<23)) == (0xff<<23); }