low_str_strcmp

Compare strings.

l_int 	low_str_strcmp  ( 
		cl_text 		s1, 
		cl_text 		s2 
);


Return Value
The return indicates the lexicographic relation of @s1 to @s2.
Value Relationship of @s1 to @s2 
   < 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_strcmp function compares @s1 and @s2 lexicographically and returns a value indicating their relationship.