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