| 1056 | } |
| 1057 | |
| 1058 | apr_status_t md_json_freplace(const md_json_t *json, apr_pool_t *p, md_json_fmt_t fmt, |
| 1059 | const char *fpath, apr_fileperms_t perms) |
| 1060 | { |
| 1061 | j_write_ctx ctx; |
| 1062 | ctx.json = json; |
| 1063 | ctx.fmt = fmt; |
| 1064 | ctx.fname = fpath; |
| 1065 | return md_util_freplace(fpath, perms, p, write_json, &ctx); |
| 1066 | } |
| 1067 | |
| 1068 | apr_status_t md_json_readd(md_json_t **pjson, apr_pool_t *pool, const char *data, size_t data_len) |
| 1069 | { |
no test coverage detected