| 48 | } |
| 49 | |
| 50 | bool |
| 51 | StringUtils::is_space(const char c) |
| 52 | { |
| 53 | return ((c == ' ') || |
| 54 | (c == '\t') || |
| 55 | (c == '\n')); |
| 56 | } |
| 57 | |
| 58 | void |
| 59 | StringUtils::ignore_spaces(const string &str, size_t &pos) |
nothing calls this directly
no outgoing calls
no test coverage detected