git: 9front

ref: 3e7ad6ef67711cbf73c61d1ab2d77c82a2ff7b3c
dir: /sys/src/ape/lib/bsd/nptohl.c/

View raw version
unsigned long
nptohl(void *p)
{
	unsigned char *up;
	unsigned long x;

	up = p;
	x = (up[0]<<24)|(up[1]<<16)|(up[2]<<8)|up[3];
	return x;
}