Is this a string equal to str? */
| 21 | |
| 22 | /* Is this a string equal to str? */ |
| 23 | static inline bool json_tok_streq(const char *buffer, const jsmntok_t *tok, |
| 24 | const char *str) |
| 25 | { |
| 26 | return json_tok_strneq(buffer, tok, str, strlen(str)); |
| 27 | } |
| 28 | |
| 29 | /* Does this string token start with prefix? */ |
| 30 | bool json_tok_startswith(const char *buffer, const jsmntok_t *tok, |