| 329 | |
| 330 | |
| 331 | static int |
| 332 | json_norm_value_string_init(struct json_norm_value *val, |
| 333 | const char *str, size_t len) |
| 334 | { |
| 335 | val->type= JSON_VALUE_STRING; |
| 336 | return json_norm_string_init(&val->value.string, str, len); |
| 337 | } |
| 338 | |
| 339 | |
| 340 | static int json_norm_kv_comp(const void *a_, const void *b_) |
no test coverage detected