| 130 | } |
| 131 | |
| 132 | bool json_tok_is_null(const char *buffer, const jsmntok_t *tok) |
| 133 | { |
| 134 | if (tok->type != JSMN_PRIMITIVE) |
| 135 | return false; |
| 136 | return buffer[tok->start] == 'n'; |
| 137 | } |
| 138 | |
| 139 | const jsmntok_t *json_next(const jsmntok_t *tok) |
| 140 | { |
no outgoing calls
no test coverage detected