Scan a string for HTTP token characters, returning the pointer to * the first non-token character. */
| 1662 | * the first non-token character. |
| 1663 | */ |
| 1664 | AP_DECLARE(const char *) ap_scan_http_token(const char *ptr) |
| 1665 | { |
| 1666 | for ( ; !TEST_CHAR(*ptr, T_HTTP_TOKEN_STOP); ++ptr) ; |
| 1667 | |
| 1668 | return ptr; |
| 1669 | } |
| 1670 | |
| 1671 | /* Scan a string for visible ASCII (0x21-0x7E) or obstext (0x80+) |
| 1672 | * and return a pointer to the first ctrl/space character encountered. |
no outgoing calls
no test coverage detected