| 39 | using namespace std; |
| 40 | |
| 41 | bool |
| 42 | StringUtils::empty_line(const std::string &line) |
| 43 | { |
| 44 | if (line.empty()) |
| 45 | return true; |
| 46 | size_t found = line.find_first_not_of("\t\n "); |
| 47 | return (found == string::npos); |
| 48 | } |
| 49 | |
| 50 | bool |
| 51 | StringUtils::is_space(const char c) |
nothing calls this directly
no outgoing calls
no test coverage detected