#include <mbstring.h>
Go to the source code of this file.
◆ _mbscoll()
Definition at line 18 of file mbscoll.c.
19{
20 unsigned char *
s1 = (
unsigned char *)str1;
21 unsigned char *
s2 = (
unsigned char *)str2;
22
23 unsigned short *short_s1, *short_s2;
24
25 int l1, l2;
26
28
30 break;
31
34 if ( !l1 && !l2 ) {
35
38 else {
41 }
42 }
43 else if ( l1 && l2 ){
44 short_s1 = (
unsigned short *)
s1;
45 short_s2 = (
unsigned short *)
s2;
46 if ( *short_s1 != *short_s2 )
47 return colldif(*short_s1, *short_s2);
48 else {
51
52 }
53 }
54 else
56 } ;
57 return 0;
58}
int colldif(unsigned short c1, unsigned short c2)
int __cdecl _ismbblead(unsigned int)
◆ colldif()