m_col_cpstr
This function compares the specified CP850 strings. Comparison is case and accent
insensitive, so the characters a, A, and are considered equivalent. Graphical
characters also evaluate together.
- Syntax: int m_col_cpstr(str1,len1,str2,len2)
- Parameters: char far *str1 - String 1 to compare
int len1 - Length of string 1
char far *str2 - String 2 to compare
int len2 - Length of string 2
- Returns: 0 - if the strings are equal
-1 - if string 1 characters precede string 2 (alpha-numerically)
+1 - if string 2 characters precede string 1 (alpha-numerically)
NOTE THAT THE NUMBERS RETURNED ARE EXACTLY OPPOSITE THAT OF THE
STANDARD C FUNCTION strcmp!