Searched refs:us2 (Results 1 – 2 of 2) sorted by relevance
81 const u_char *us2 = (const u_char *)s2; in strcasecmp() local83 while (cm[*us1] == cm[*us2++]) in strcasecmp()86 return (cm[*us1] - cm[*--us2]); in strcasecmp()95 const u_char *us2 = (const u_char *)s2; in strncasecmp() local98 if (cm[*us1] != cm[*us2++]) in strncasecmp()99 return (cm[*us1] - cm[*--us2]); in strncasecmp()
58 const unsigned char *us2 = (const unsigned char *)s2; in strcasecmp() local60 while (tolower(*us1) == tolower(*us2)) { in strcasecmp()63 us2++; in strcasecmp()65 return tolower(*us1) - tolower(*us2); in strcasecmp()