Update and rename WtStringCompare.c to StringCompare.c

This commit is contained in:
vxunderground 2021-05-13 22:58:06 -05:00 committed by GitHub
parent b76d870459
commit 38ac77d402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
INT WtStringCompare(LPCWSTR String1, LPCWSTR String2)
INT StringCompare(LPCWSTR String1, LPCWSTR String2)
{
for (; *String1 == *String2; String1++, String2++)
{
@ -7,4 +7,4 @@ INT WtStringCompare(LPCWSTR String1, LPCWSTR String2)
}
return ((*(LPCWSTR)String1 < *(LPCWSTR)String2) ? -1 : +1);
}
}