* wcscasecmp() */
| 300 | * wcscasecmp() |
| 301 | */ |
| 302 | static int e9wcscasecmp(const wchar_t *s1, const wchar_t *s2) |
| 303 | { |
| 304 | for (; e9towlower(*s1) == e9towlower(*s2) && *s1 != L'\0'; s1++, s2++) |
| 305 | ; |
| 306 | return (int)e9towlower(*s2) - (int)e9towlower(*s1); |
| 307 | } |
| 308 | |
| 309 | /* |
| 310 | * strcmp() |
no test coverage detected