| 317 | |
| 318 | |
| 319 | int |
| 320 | json_norm_value_array_init(struct json_norm_value *val) |
| 321 | { |
| 322 | const size_t element_size= sizeof(struct json_norm_value); |
| 323 | struct json_norm_array *array= &val->value.array; |
| 324 | |
| 325 | val->type= JSON_VALUE_ARRAY; |
| 326 | |
| 327 | return json_norm_init_dynamic_array(element_size, &array->values); |
| 328 | } |
| 329 | |
| 330 | |
| 331 | static int |
no test coverage detected