Home | History | Annotate | Download | only in lint1

Lines Matching refs:strcmp

134  *	* strcmp: 0 means equal, < 0 means less than, > 0 means greater than
140 * expressions like !strcmp(s1, s2), which is not correct since strcmp
147 extern int strcmp(const char *, const char *);
170 return !strcmp(s1, s2);
176 return strcmp(s1, s2) == 0;
295 * goals of strict bool mode is to normalize all expressions calling 'strcmp'
296 * to be of the form 'strcmp(a, b) == 0' instead of '!strcmp(a, b)'.
307 int strcmp(const char *, const char *);
317 if (strcmp(a, b))
323 if (!strcmp(a, b))
334 * The old rule had allowed a raw condition 'strcmp(a, b)' without