static JSOBJ newTrue()

in src/ujdecode.c [245:251]


static JSOBJ newTrue(void* context)
{
	struct DecoderState *ds = context;
	TrueValue *tv = (TrueValue *) alloc(ds, sizeof(TrueValue *));
	tv->item.type = UJT_True;
	return (JSOBJ) tv;
}