Searched refs:tline (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/sbin/dhclient/
H A Dconflex.c64 static int tline; variable
172 if (lexline != tline)
175 lexline = tline;
195 tline = lexline;
197 if (lexline != tline)
203 lexline = tline;
204 tline = x;
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_write.c290 recno_t fline, tline, lcnt; local
297 tline = tm->lno;
322 if (tline != 0)
323 for (; fline <= tline; ++fline, ++lcnt) {
/freebsd-9.3-release/contrib/less/
H A Dtags.c279 char tline[TAGLINE_SIZE]; local
295 while (fgets(tline, sizeof(tline), f) != NULL)
297 if (tline[0] == '!')
300 if (strncmp(tag, tline, taglen) != 0 || !WHITESP(tline[taglen]))
316 p = skipsp(tline+taglen);
/freebsd-9.3-release/usr.bin/unifdef/
H A Dunifdef.c153 * we leave some space at the end of the tline buffer to accommodate this.
191 static char tline[MAXLINE+EDITSLOP];/* input buffer plus space */ variable
523 snprintf(keyword, tline + sizeof(tline) - keyword,
560 bool blankline = tline[strspn(tline, " \t\r\n")] == '\0';
568 if (fputs(tline, output) == EOF)
653 if (fgets(tline, MAXLINE, input) == NULL) {
660 if (strrchr(tline, '\n') == strrchr(tline, '\
[all...]
/freebsd-9.3-release/contrib/ee/
H A Dee.c2316 struct text *tline; /* temporary pointer to new line */ local
2345 tline = txtalloc(); /* allocate data structure for next line */
2346 tline->line_number = curr_line->line_number + 1;
2347 tline->next_line = curr_line->next_line;
2348 tline->prev_line = curr_line;
2349 curr_line->next_line = tline;
2350 if (tline->next_line != NULL)
2351 tline->next_line->prev_line = tline;
2352 curr_line = tline;
[all...]

Completed in 115 milliseconds