| 489 | } |
| 490 | |
| 491 | static apr_status_t write_text(void *baton, struct apr_file_t *f, apr_pool_t *p) |
| 492 | { |
| 493 | const char *text = baton; |
| 494 | apr_size_t len = strlen(text); |
| 495 | |
| 496 | (void)p; |
| 497 | return apr_file_write_full(f, text, len, &len); |
| 498 | } |
| 499 | |
| 500 | apr_status_t md_text_fcreatex(const char *fpath, apr_fileperms_t perms, |
| 501 | apr_pool_t *p, const char *text) |