Lines Matching refs:strncmp
673 if (strncmp(cp, "\\\r\n", 3) == 0 || in parseline()
674 strncmp(cp, "\\\n", 2) == 0) in parseline()
860 } else if (strncmp(cp, "defined", 7) == 0 && endsym(cp[7])) { in eval_unary()
928 if (strncmp(cp, op->str, strlen(op->str)) == 0) in eval_table()
982 if (strncmp(cp, "\\\r\n", 3) == 0) in skipcomment()
984 else if (strncmp(cp, "\\\n", 2) == 0) in skipcomment()
988 if (strncmp(cp, "/\\\r\n", 4) == 0) { in skipcomment()
991 } else if (strncmp(cp, "/\\\n", 3) == 0) { in skipcomment()
994 } else if (strncmp(cp, "/*", 2) == 0) { in skipcomment()
997 } else if (strncmp(cp, "//", 2) == 0) { in skipcomment()
1000 } else if (strncmp(cp, "\'", 1) == 0) { in skipcomment()
1004 } else if (strncmp(cp, "\"", 1) == 0) { in skipcomment()
1008 } else if (strncmp(cp, "\n", 1) == 0) { in skipcomment()
1017 if (strncmp(cp, "\n", 1) == 0) { in skipcomment()
1034 } else if (strncmp(cp, "\n", 1) == 0) { in skipcomment()
1043 if (strncmp(cp, "*\\\r\n", 4) == 0) { in skipcomment()
1046 } else if (strncmp(cp, "*\\\n", 3) == 0) { in skipcomment()
1049 } else if (strncmp(cp, "*/", 2) == 0) { in skipcomment()