MCPcopy Create free account
hub / github.com/HumbleNet/HumbleNet / process_array

Function process_array

3rdparty/json-parser/examples/test_json.c:72–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72static 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
85static void process_value(json_value* value, int depth)
86{

Callers 1

process_valueFunction · 0.85

Calls 1

process_valueFunction · 0.85

Tested by

no test coverage detected