| 122 | } |
| 123 | |
| 124 | int 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 | |
| 134 | int kwsysString_strncasecmp(char const* lhs, char const* rhs, size_t n) |
| 135 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…