low_str_stricmp

Perform a lowercase comparison of strings. 
l_int			low_str_stricmp ( 
		cl_text 		s1,
		cl_text 		s2
);


Return Value
The return value indicates the relation of @s1 to @s2 as follows.
Return Value Description 
   < 0 @s1 less than @s2 
   0 @s1 identical to @s2 
   > 0 @s1 greater than @s2 
Parameters
s1, s2
Null-terminated strings to compare
Remarks
The low_str_stricmp function lexicographically compares lowercase versions 
of @s1 and @s2 and returns a value indicating their relationship.