mirror of
https://github.com/opencv/opencv.git
synced 2024-12-29 04:28:17 +08:00
14 lines
249 B
C++
14 lines
249 B
C++
#include "precomp.hpp"
|
|
|
|
#if ANDROID
|
|
int wcscasecmp(const wchar_t* lhs, const wchar_t* rhs)
|
|
{
|
|
wint_t left, right;
|
|
do {
|
|
left = towlower(*lhs++);
|
|
right = towlower(*rhs++);
|
|
} while (left && left == right);
|
|
return left == right;
|
|
}
|
|
#endif
|