int UJIsTrue()

in src/ujdecode.c [387:395]


int UJIsTrue(UJObject obj)
{
	if (((Item *) obj)->type == UJT_True)
	{
		return 1;
	}
	
	return 0;
}