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

Function kwsysString_strcasecmp

Source/kwsys/String.c:124–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122}
123
124int kwsysString_strcasecmp(char const* lhs, char const* rhs)
125{
126 int result;
127 while ((result = kwsysString_tolower(*lhs) - kwsysString_tolower(*rhs++)) ==
128 0 &&
129 *lhs++) {
130 }
131 return result;
132}
133
134int kwsysString_strncasecmp(char const* lhs, char const* rhs, size_t n)
135{

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…