#include #include #include #include #include void substr_token (char *json, char *temp, jsmntok_t *t) { memcpy(temp, json+t->start, t->end - t->start); temp[t->end-t->start] = '\0'; } void json_parse_array(char *json, void *temp, jsmntok_t *t, int r, char type) { for (int i=0; i