| 132 | } |
| 133 | |
| 134 | int 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 */ |
nothing calls this directly
no test coverage detected
searching dependent graphs…