int UJIsLong()

in src/ujdecode.c [408:416]


int UJIsLong(UJObject obj)
{
	if (((Item *) obj)->type == UJT_Long)
	{
		return 1;
	}

	return 0;
}