| 165 | } |
| 166 | |
| 167 | const jsmntok_t *json_get_member(const char *buffer, const jsmntok_t tok[], |
| 168 | const char *label) |
| 169 | { |
| 170 | return json_get_membern(buffer, tok, label, strlen(label)); |
| 171 | } |
| 172 | |
| 173 | const jsmntok_t *json_get_arr(const jsmntok_t tok[], size_t index) |
| 174 | { |
no test coverage detected