MCPcopy Create free account
hub / github.com/apache/httpd / write_text

Function write_text

modules/md/md_util.c:491–498  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

489}
490
491static 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
500apr_status_t md_text_fcreatex(const char *fpath, apr_fileperms_t perms,
501 apr_pool_t *p, const char *text)

Callers 1

md_text_fcreatexFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected