Lines Matching full:s1
37 colcomp (s1, s2) in colcomp() argument
38 register char *s1; in colcomp()
43 while (*s1 && *s2)
45 if ( MyIsDigit(*s1)
48 hilo = (*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0;
49 ++s1;
51 while (MyIsDigit(*s1)
55 hilo = (*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0;
56 ++s1;
59 if (MyIsDigit(*s1))
62 hilo = -1; /* s1 is first */
67 if (MyIsDigit(*s1))
69 hilo = -1; /* s1 must come first */
77 hilo = (*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0;
80 ++s1;
83 if (*s1 && *s2)
87 return ((*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0);