Lines Matching defs:strncmp

239 #undef	strncmp
240 #define strncmp(s,t,n) sstrncmp(s,t,n)
256 * environmentally safe strncmp()
870 if ((flags & EXTERN) && *proto->tp == 's' && !strncmp(proto->tp, "static", 6))
876 if (*proto->tp == '_' && !strncmp(proto->tp, "__STDPP__directive", 6)) c = '#';
991 if (!(flags & RECURSIVE) && (flags & (DIRECTIVE|TOKENS)) != DIRECTIVE && !strncmp(proto->tp, "else", 4))
998 if (!strncmp(proto->tp, "extern", 6))
1002 if (!(flags & RECURSIVE) && !strncmp(proto->tp, "for", 3))
1012 if (!strncmp(proto->tp, "inline", 6) && !(flags & (MATCH|SKIP|TOKENS|TYPEDEF)) && proto->brace == 0 && paren == 0 && group == 0 && (last == ';' || last == '}' || last == '\n' || last == 0))
1022 if (!(flags & RECURSIVE) && !strncmp(proto->tp, "return", 6))
1029 if ((proto->options & EXTERNALIZE) && !strncmp(proto->tp, "static", 6))
1036 if (!(flags & RECURSIVE) && !strncmp(proto->tp, "typedef", 7))
1043 if (*ip == '(' && !strncmp(proto->tp, "va_start", 8)) c = T_VA_START;
1046 if (!strncmp(proto->tp, "void", 4))
1066 if (!(flags & RECURSIVE) && !strncmp(proto->tp, "while", 5))
1517 else if ((flags & EXTERN) && (op == om || *(op - 1) == ' ') && *ie == 'r' && !strncmp(ie, "register", 8) && (*(ie + 8) == ' ' || *(ie + 8) == '\t' || *(ie + 8) == '\n'))
1913 if (*bp == 'r' && !strncmp(bp, "register", 8) && (*(bp + 8) == ' ' || *(bp + 8) == '\t')) bp += 9;
1969 if (*bp == 'r' && !strncmp(bp, "register", 8) && (*(bp + 8) == ' ' || *(bp + 8) == '\t')) bp += 9;
2293 if (*s == *PRAGMADIR && !strncmp(s, PRAGMADIR, sizeof(PRAGMADIR) - 1) && (*(s += sizeof(PRAGMADIR) - 1) == ' ' || *s == '\t'))
2302 if (pragmas[i].size == z && !strncmp(t, pragmas[i].name, z))
2326 else if (*s == *GENERATED && !strncmp(s, GENERATED, sizeof(GENERATED) - 1))
2336 if (*s == *com && !strncmp(s, com, comlen))
2344 if (*s == notices[i].name[0] && !strncmp(s, notices[i].name, notices[i].size))