Lines Matching defs:tline
152 * we leave some space at the end of the tline buffer to accommodate this.
190 static char tline[MAXLINE+EDITSLOP];/* input buffer plus space */
522 snprintf(keyword, tline + sizeof(tline) - keyword,
558 bool blankline = tline[strspn(tline, " \t\r\n")] == '\0';
565 fputs(tline, output);
649 if (fgets(tline, MAXLINE, input) == NULL)
652 if (strrchr(tline, '\n') == strrchr(tline, '\r') + 1)
659 cp = skipcomment(tline);
669 keyword = tline + (cp - tline);
722 size_t len = cp - tline;
723 if (fgets(tline + len, MAXLINE - len, input) == NULL) {
725 strcpy(tline + len, newline);