#include <precomp.h>
#include <mbstring.h>
Go to the source code of this file.
◆ _mbsicmp()
Definition at line 16 of file mbsicmp.c.
17{
18 unsigned char *
s1 = (
unsigned char *)str1;
19 unsigned char *
s2 = (
unsigned char *)str2;
20
21 unsigned short *short_s1, *short_s2;
22
23 int l1, l2;
24
25 do {
26
28 break;
29
32 if ( !l1 && !l2 ) {
33
36 else {
39 }
40 }
41 else if ( l1 && l2 ){
42 short_s1 = (
unsigned short *)
s1;
43 short_s2 = (
unsigned short *)
s2;
46 else {
49 }
50 }
51 else
54 return 0;
55
57 {
59 return 0;
62 }
64}
_Check_return_ _CRTIMP unsigned int __cdecl _mbctoupper(_In_ unsigned int _Ch)
int __cdecl _ismbblead(unsigned int)