MCPcopy Create free account
hub / github.com/Kitware/CMake / Strucmp

Method Strucmp

Source/kwsys/SystemTools.cxx:2720–2729  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2718}
2719
2720int SystemTools::Strucmp(char const* l, char const* r)
2721{
2722 int lc;
2723 int rc;
2724 do {
2725 lc = kwsysString_tolower(*l++);
2726 rc = kwsysString_tolower(*r++);
2727 } while (lc == rc && lc);
2728 return lc - rc;
2729}
2730
2731// return file's modified time
2732long int SystemTools::ModifiedTime(std::string const& filename)

Callers

nothing calls this directly

Calls 1

kwsysString_tolowerFunction · 0.85

Tested by

no test coverage detected