| 277 | } |
| 278 | |
| 279 | AP_DECLARE(void) ap_pregfree(apr_pool_t *p, ap_regex_t *reg) |
| 280 | { |
| 281 | ap_regfree(reg); |
| 282 | apr_pool_cleanup_kill(p, (void *) reg, regex_cleanup); |
| 283 | } |
| 284 | |
| 285 | /* |
| 286 | * Similar to standard strstr() but we ignore case in this version. |
no test coverage detected