| 874 | } |
| 875 | |
| 876 | bool Str::cStringEq(const char* s1, const char* s2) { |
| 877 | if (s1 == nullptr && s2 == nullptr) return true; |
| 878 | if (s1 == nullptr || s2 == nullptr) return false; |
| 879 | return strcmp(s1, s2) == 0; |
| 880 | } |
| 881 | |
| 882 | bool Str::cStringCaseEq(const char* s1, const char* s2) { |
| 883 | if (s1 == nullptr && s2 == nullptr) return true; |
nothing calls this directly
no outgoing calls
no test coverage detected