--------------------------------------------------------------------------
| 1569 | |
| 1570 | //-------------------------------------------------------------------------- |
| 1571 | static bool scanforchar(const char *str, U32 &idx, char c) |
| 1572 | { |
| 1573 | U32 startidx = idx; |
| 1574 | while(str[idx] != c && str[idx] && str[idx] != ':' && str[idx] != '>' && str[idx] != '\n') |
| 1575 | idx++; |
| 1576 | return str[idx] == c && startidx != idx; |
| 1577 | } |
| 1578 | |
| 1579 | //-------------------------------------------------------------------------- |
| 1580 | static bool scanforURL(const char *str, U32 &idx, char c) |
no outgoing calls
no test coverage detected