Lines Matching refs:s1
39 colcomp (s1, s2)
40 register char *s1;
45 while (*s1 && *s2)
47 if ( MyIsDigit(*s1)
50 hilo = (*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0;
51 ++s1;
53 while (MyIsDigit(*s1)
57 hilo = (*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0;
58 ++s1;
61 if (MyIsDigit(*s1))
64 hilo = -1; /* s1 is first */
69 if (MyIsDigit(*s1))
71 hilo = -1; /* s1 must come first */
79 hilo = (*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0;
82 ++s1;
85 if (*s1 && *s2)
89 return ((*s1 < *s2) ? -1 : (*s1 > *s2) ? 1 : 0);