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

Function kwsysString_strncasecmp

Source/kwsys/String.c:134–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132}
133
134int kwsysString_strncasecmp(char const* lhs, char const* rhs, size_t n)
135{
136 int result = 0;
137 while (n &&
138 (result = kwsysString_tolower(*lhs) - kwsysString_tolower(*rhs++)) ==
139 0 &&
140 *lhs++) {
141 --n;
142 }
143 return result;
144}
145
146#endif /* KWSYS_STRING_C */

Callers

nothing calls this directly

Calls 1

kwsysString_tolowerFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…