MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_json_create_array

Function acl_json_create_array

lib_acl/src/json/acl_json_util.c:234–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232}
233
234ACL_JSON_NODE *acl_json_create_array(ACL_JSON *json)
235{
236 ACL_JSON_NODE *node = acl_json_node_alloc(json);
237
238 node->left_ch = '[';
239 node->right_ch = ']';
240 node->type = ACL_JSON_T_ARRAY;
241 return node;
242}
243
244ACL_JSON_NODE *acl_json_create_node(ACL_JSON *json,
245 const char *name, ACL_JSON_NODE *value)

Callers 3

test_json_buildFunction · 0.85
test_json_buildFunction · 0.85
json.cppFile · 0.85

Calls 1

acl_json_node_allocFunction · 0.85

Tested by 2

test_json_buildFunction · 0.68
test_json_buildFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…