shithub: qk1

ref: 6ec1defca988454ab5f0d4f98ea0a12c9e39a5f3
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);
}