* Fills token type and boundaries. */
| 123 | * Fills token type and boundaries. |
| 124 | */ |
| 125 | static void jsmn_fill_token(jsmntok_t *token, const jsmntype_t type, |
| 126 | const int start, const int end) { |
| 127 | token->type = type; |
| 128 | token->start = start; |
| 129 | token->end = end; |
| 130 | /*token->size = 0;*/ |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Fills next available token with JSON primitive. |
no outgoing calls
no test coverage detected