Performance testing branch is merged back into trunk
This commit is contained in:
@@ -1,13 +1 @@
|
||||
#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
|
||||
|
Reference in New Issue
Block a user