| 87 | } |
| 88 | |
| 89 | char |
| 90 | StringUtils::first_nonspace_char(const std::string &s) |
| 91 | { |
| 92 | if (s.empty()) |
| 93 | return '\0'; |
| 94 | size_t pos = 0; |
| 95 | ignore_spaces(s, pos); |
| 96 | return s[pos]; |
| 97 | } |
| 98 | |
| 99 | size_t |
| 100 | StringUtils::find_any_char(const string &s, size_t pos, const string& to_match) |
nothing calls this directly
no outgoing calls
no test coverage detected