| 70 | } |
| 71 | |
| 72 | static void process_array(json_value* value, int depth) |
| 73 | { |
| 74 | int length, x; |
| 75 | if (value == NULL) { |
| 76 | return; |
| 77 | } |
| 78 | length = value->u.array.length; |
| 79 | printf("array\n"); |
| 80 | for (x = 0; x < length; x++) { |
| 81 | process_value(value->u.array.values[x], depth); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | static void process_value(json_value* value, int depth) |
| 86 | { |
no test coverage detected