MCPcopy Create free account
hub / github.com/apache/httpd / md_json_del

Function md_json_del

modules/md/md_json.c:618–632  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

616}
617
618apr_status_t md_json_del(md_json_t *json, ...)
619{
620 const char *key;
621 json_t *j;
622 va_list ap;
623
624 va_start(ap, json);
625 j = jselect_parent(&key, 0, json, ap);
626 va_end(ap);
627
628 if (key && j && json_is_object(j)) {
629 json_object_del(j, key);
630 }
631 return APR_SUCCESS;
632}
633
634/**************************************************************************************************/
635/* object strings */

Callers 2

read_store_fileFunction · 0.85
job_loadjFunction · 0.85

Calls 1

jselect_parentFunction · 0.85

Tested by

no test coverage detected