This is a stub overload to help with all the strcmp calls below and avoid needing to rewrite all of them
| 27 | |
| 28 | /// This is a stub overload to help with all the strcmp calls below and avoid needing to rewrite all of them |
| 29 | std::size_t strcmp(const std::string& s, const std::string& e) { |
| 30 | return s.compare(e); |
| 31 | } |
| 32 | std::size_t strcmp(const std::string& s, const char* e) { // To avoid unnecessary constructors |
| 33 | return s.compare(e); |
| 34 | } |
no outgoing calls
no test coverage detected