| 1628 | } |
| 1629 | |
| 1630 | char *str_skip_to_whitespace(char *str) |
| 1631 | { |
| 1632 | while(*str && (*str != ' ' && *str != '\t' && *str != '\n')) |
| 1633 | str++; |
| 1634 | return str; |
| 1635 | } |
| 1636 | |
| 1637 | char *str_skip_whitespaces(char *str) |
| 1638 | { |
nothing calls this directly
no outgoing calls
no test coverage detected