Lines Matching full:s1
25 ** s1 -- first string.
29 ** strcasecmp(reverse(s1), reverse(s2))
33 sm_strrevcasecmp(s1, s2) in sm_strrevcasecmp() argument
34 const char *s1, *s2; in sm_strrevcasecmp()
38 i1 = strlen(s1) - 1;
41 charmap[(unsigned char) s1[i1]] ==
59 return (charmap[(unsigned char) s1[i1]] -
67 ** s1 -- first string.
71 ** strcmp(reverse(s1), reverse(s2))
75 sm_strrevcmp(s1, s2) in sm_strrevcmp() argument
76 const char *s1, *s2; in sm_strrevcmp()
80 i1 = strlen(s1) - 1;
82 while (i1 >= 0 && i2 >= 0 && s1[i1] == s2[i2])
99 return s1[i1] - s2[i2];