| 147 | } hlog; |
| 148 | |
| 149 | static apr_size_t count_string(const char *p) |
| 150 | { |
| 151 | apr_size_t n; |
| 152 | |
| 153 | for (n = 0 ; *p ; ++p, ++n) |
| 154 | if (TEST_CHAR(*p, T_ESCAPE_FORENSIC)) |
| 155 | n += 2; |
| 156 | return n; |
| 157 | } |
| 158 | |
| 159 | static int count_headers(void *h_, const char *key, const char *value) |
| 160 | { |
no outgoing calls
no test coverage detected