Lines Matching refs:strcmp
28 * strchr, strrchr, strcat, strcmp, strcpy, strlen,
33 * (strchr, strrchr, strcat, strcmp, strcpy, strlen,
118 /* Strcmp (strcmp( s1, s2 ) == e_res) */
133 /* Strcat (strcmp( strcat(s1, s2), s1s2 ) == e_res) */
134 /* ASSUMES strcmp is working -- it is tested prior to strcat */
150 /* Strcpy (strcmp( strcpy(s1, s2), s1s2 ) == e_res) */
151 /* ASSUMES strcmp is working -- it is tested prior to strcpy */
187 /* Strncat (strcmp( strncat(s1, s2, n), s1ns2 ) == e_res) */
188 /* ASSUMES strcmp is working -- it is tested prior to strncat */
213 /* Strncpy (strcmp( strncpy(s1, s2), s1n ) == e_res) */
214 /* ASSUMES strcmp is working -- it is tested prior to strncpy */
331 n = strcmp(t_cmp[i].s1, t_cmp[i].s2);
349 strcmp(strcat(t_cat[i].s1, t_cat[i].s2), t_cat[i].s1s2))
364 if ((n = strcmp(strcpy(t_cpy[i].s1, t_cpy[i].s2), t_cpy[i].s2))
383 strcmp(strncat(t_ncat[i].s1, t_ncat[i].s2, t_ncat[i].n),
420 strcmp(strncpy(t_ncpy[i].s1, t_ncpy[i].s2, t_ncpy[i].n),