MCPcopy Create free account
hub / github.com/CoolProp/CoolProp / strcmp

Function strcmp

src/HumidAirProp.cpp:29–31  ·  view source on GitHub ↗

This is a stub overload to help with all the strcmp calls below and avoid needing to rewrite all of them

Source from the content-addressed store, hash-verified

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

Callers 7

extract_fractionsFunction · 0.85
returnHumAirCodeFunction · 0.85
Name2TypeFunction · 0.85
HAProps_AuxFunction · 0.85
IcePropsFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected