Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/* MS VC++ RTL memcmp core loops: */
while ( --count && *(char *)buf1 == *(char *)buf2 ) {
buf1 = (char *)buf1 + 1;
buf2 = (char *)buf2 + 1;
}
...
/* MS VC++ RTL strcmp core loop: */
while( ! (ret = *(unsigned char *)src - *(unsigned char *)dst) && *dst)
++src, ++dst;
...
if (!(lWordIndex == 0 &&
strcmp(str1, "Z") == 0 ||
strcmp(str1, "X") == 0 ) &&
lPhoneticName == &lWord[lWordIndex][0]))
{
if (!(lWordIndex == 0 &&
lPhoneticName == &lWord[lWordIndex][0] &&
strlen(str1) == 1 &&
(memcmp(str1, "Z", 1) == 0 ||
memcmp(str1, "X", 1) == 0 )))
{
union
{
char chars[4];
int word;
} first, second;