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

Function acl_json_create_obj

lib_acl/src/json/acl_json_util.c:224–232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

222}
223
224ACL_JSON_NODE *acl_json_create_obj(ACL_JSON *json)
225{
226 ACL_JSON_NODE *node = acl_json_node_alloc(json);
227
228 node->left_ch = '{';
229 node->right_ch = '}';
230 node->type = ACL_JSON_T_OBJ;
231 return node;
232}
233
234ACL_JSON_NODE *acl_json_create_array(ACL_JSON *json)
235{

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…