| 184 | } |
| 185 | |
| 186 | const jsmntok_t *json_next(const jsmntok_t *tok) |
| 187 | { |
| 188 | const jsmntok_t *t; |
| 189 | size_t i; |
| 190 | |
| 191 | for (t = tok + 1, i = 0; i < tok->size; i++) |
| 192 | t = json_next(t); |
| 193 | |
| 194 | return t; |
| 195 | } |
| 196 | |
| 197 | const jsmntok_t *json_get_membern(const char *buffer, |
| 198 | const jsmntok_t tok[], |
no outgoing calls
no test coverage detected