shithub: qk1

ref: 7b70a3e6d9caf58d84792c9c2ddd6547a13b7843
dir: /isnanf.c/

View raw version
#include <u.h>

int
isnanf(float f)
{
	union {
		float f;
		u32int u;
	}x;

	x.f = f;
	return (x.u & (0xff<<23)) == (0xff<<23);
}