Name
ap_pstrdup — duplicate a string in a pool
Synopsis
char *ap_pstrdup(pool *p,const char *s)
Duplicates a string within a pool. The memory is destroyed when the
pool is destroyed. If s
is
NULL
, the return value is NULL
;
otherwise, it is a pointer to the new copy of the string.