yw_string_cmp

Name

yw_string_cmp -- compare two strings

Synopsis


     #include <yw/string.h>
   

int yw_string_cmp(const YwString *s1, const YwString *s2);

DESCRIPTION

This function comparse strings given in s1 and s2 parameters. It is eqivalent of strcmp(3), except that it works on UNICODE instead of ASCII. Collating order used is locale independent and is simply order of characters in UNICODE.

RETURN VALUE

This function returns integer less then, equal to, or greater then zero, if s1 is found respectivly less then, equal or greater then s2.

SEE ALSO

strcmp (3),

INFO

Generated from: string.c,v 1.6 2001/05/23 08:46:01 malekith Exp.