| 109 | } |
| 110 | |
| 111 | md_json_t *md_json_copy(apr_pool_t *pool, const md_json_t *json) |
| 112 | { |
| 113 | return json_create(pool, json_copy(json->j)); |
| 114 | } |
| 115 | |
| 116 | md_json_t *md_json_clone(apr_pool_t *pool, const md_json_t *json) |
| 117 | { |
nothing calls this directly
no test coverage detected