Example #1
0
static void kJSON_p(KonohaContext *kctx, KonohaValue *v, int pos, KGrowingBuffer *wb)
{
	kJSON *json = (kJSON *)v[pos].asObject;
	char *data = JSON_toString(json->json);
	KLIB Kwb_printf(kctx, wb, "%s", data);
	free(data);
}
Example #2
0
int main(int argc, char const* argv[])
{
    int i;
    for(i = 0; i < 4096*4096; i++) {
        double f = (rand() % 2 == 0 ? -1 : 1) *
            (rand() % 2 == 0 ? gen_float_plus() : gen_float_minus());
        JSON json = JSONDouble_new(f);
        assert(toDouble(json.val) - f <= 1e-200);
        JSON_free(json);
        char *str = JSON_toString(json);
        free(str);
    }
    return 0;
}