| 350 | /* file system related */ |
| 351 | |
| 352 | apr_status_t md_util_fopen(FILE **pf, const char *fn, const char *mode) |
| 353 | { |
| 354 | *pf = fopen(fn, mode); |
| 355 | if (*pf == NULL) { |
| 356 | return errno; |
| 357 | } |
| 358 | |
| 359 | return APR_SUCCESS; |
| 360 | } |
| 361 | |
| 362 | apr_status_t md_util_fcreatex(apr_file_t **pf, const char *fn, |
| 363 | apr_fileperms_t perms, apr_pool_t *p) |
no outgoing calls
no test coverage detected