| 771 | } |
| 772 | |
| 773 | AP_DECLARE(char *) ap_getword_nulls_nc(apr_pool_t *atrans, char **line, |
| 774 | char stop) |
| 775 | { |
| 776 | return ap_getword_nulls(atrans, (const char **) line, stop); |
| 777 | } |
| 778 | |
| 779 | AP_DECLARE(char *) ap_getword_nulls(apr_pool_t *atrans, const char **line, |
| 780 | char stop) |
nothing calls this directly
no test coverage detected