| 1585 | -------------------------------------------------------------------------*/ |
| 1586 | |
| 1587 | static void |
| 1588 | http_skip_ws(const char *&buf, int &len) |
| 1589 | { |
| 1590 | while (len > 0 && *buf && ParseRules::is_ws(*buf)) { |
| 1591 | buf += 1; |
| 1592 | len -= 1; |
| 1593 | } |
| 1594 | } |
| 1595 | |
| 1596 | /*------------------------------------------------------------------------- |
| 1597 | -------------------------------------------------------------------------*/ |
no test coverage detected