| 34 | } |
| 35 | |
| 36 | bool json_tok_streq(const char *buffer, const jsmntok_t *tok, const char *str) |
| 37 | { |
| 38 | return json_tok_strneq(buffer, tok, str, strlen(str)); |
| 39 | } |
| 40 | |
| 41 | bool json_tok_startswith(const char *buffer, const jsmntok_t *tok, |
| 42 | const char *prefix) |
no test coverage detected