Lines Matching full:s2
26 ** s2 -- second string.
29 ** strcasecmp(reverse(s1), reverse(s2))
33 sm_strrevcasecmp(s1, s2) in sm_strrevcasecmp() argument
34 const char *s1, *s2; in sm_strrevcasecmp()
39 i2 = strlen(s2) - 1;
42 charmap[(unsigned char) s2[i2]])
60 charmap[(unsigned char) s2[i2]]);
68 ** s2 -- second string.
71 ** strcmp(reverse(s1), reverse(s2))
75 sm_strrevcmp(s1, s2) in sm_strrevcmp() argument
76 const char *s1, *s2; in sm_strrevcmp()
81 i2 = strlen(s2) - 1;
82 while (i1 >= 0 && i2 >= 0 && s1[i1] == s2[i2])
99 return s1[i1] - s2[i2];