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

Function acl_array_index

lib_acl/src/stdlib/common/acl_array.c:424–430  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

422}
423
424void *acl_array_index(const ACL_ARRAY *a, int idx)
425{
426 if (idx < 0 || idx > a->count - 1)
427 return NULL;
428
429 return a->items[idx];
430}
431
432int acl_array_size(const ACL_ARRAY *a)
433{

Callers 15

parse_jsonFunction · 0.85
proctl_service_findFunction · 0.85
proctl_serivce_get_allFunction · 0.85
proctl_service_existFunction · 0.85
aut_loop_make_breakFunction · 0.85
aut_loop_make_endFunction · 0.85
__lookup_fn_itemFunction · 0.85
aut_args_getFunction · 0.85
aut_indexFunction · 0.85
aut_line_getvalueFunction · 0.85
aut_cfg_printFunction · 0.85
__mkcmd_endifFunction · 0.85

Calls

no outgoing calls

Tested by 8

aut_loop_make_breakFunction · 0.68
aut_loop_make_endFunction · 0.68
__lookup_fn_itemFunction · 0.68
aut_args_getFunction · 0.68
aut_indexFunction · 0.68
aut_line_getvalueFunction · 0.68
aut_cfg_printFunction · 0.68
__mkcmd_endifFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…