Scan a string for visible ASCII (0x21-0x7E) or obstext (0x80+) * and return a pointer to the first ctrl/space character encountered. */
| 1672 | * and return a pointer to the first ctrl/space character encountered. |
| 1673 | */ |
| 1674 | AP_DECLARE(const char *) ap_scan_vchar_obstext(const char *ptr) |
| 1675 | { |
| 1676 | for ( ; TEST_CHAR(*ptr, T_VCHAR_OBSTEXT); ++ptr) ; |
| 1677 | |
| 1678 | return ptr; |
| 1679 | } |
| 1680 | |
| 1681 | /* Retrieve a token, spacing over it and returning a pointer to |
| 1682 | * the first non-white byte afterwards. Note that these tokens |
no outgoing calls
no test coverage detected