| 53 | } |
| 54 | |
| 55 | bool empty(const char *str) |
| 56 | { |
| 57 | if (nullptr == str || strcmp(str, "") == 0) |
| 58 | { |
| 59 | return true; |
| 60 | } |
| 61 | return false; |
| 62 | } |
| 63 | |
| 64 | bool case_insens_equal(std::string &str1, std::string &str2) |
| 65 | { |
no outgoing calls
no test coverage detected