| 137 | } |
| 138 | |
| 139 | const jsmntok_t *json_next(const jsmntok_t *tok) |
| 140 | { |
| 141 | const jsmntok_t *t; |
| 142 | size_t i; |
| 143 | |
| 144 | for (t = tok + 1, i = 0; i < tok->size; i++) |
| 145 | t = json_next(t); |
| 146 | |
| 147 | return t; |
| 148 | } |
| 149 | |
| 150 | const jsmntok_t *json_get_membern(const char *buffer, |
| 151 | const jsmntok_t tok[], |
no outgoing calls
no test coverage detected