Lines Matching refs:numlines
57 static long numlines; /* Line count to split on. */
91 if (numlines != 0)
93 numlines = ch - '0';
95 while (numlines >= 0 && *p >= '0' && *p <= '9')
96 numlines = numlines * 10 + *p++ - '0';
97 if (numlines <= 0 || *p != '\0')
127 if (numlines != 0)
129 numlines = strtonum(optarg, 1, LONG_MAX, &errstr);
179 if (pflag && (numlines != 0 || bytecnt != 0 || chunks != 0))
182 if (numlines == 0)
183 numlines = DEFLINE;
298 } else if (lcnt++ == numlines) {