| 718 | } |
| 719 | |
| 720 | apr_status_t md_json_clone_from(void **pvalue, const md_json_t *json, apr_pool_t *p, void *baton) |
| 721 | { |
| 722 | (void)baton; |
| 723 | *pvalue = md_json_clone(p, json); |
| 724 | return APR_SUCCESS; |
| 725 | } |
| 726 | |
| 727 | /**************************************************************************************************/ |
| 728 | /* array generic */ |
nothing calls this directly
no test coverage detected