Searched refs:tline (Results 1 – 1 of 1) sorted by relevance
/scripts/ |
D | unifdef.c | 190 static char tline[MAXLINE+EDITSLOP];/* input buffer plus space */ variable 522 snprintf(keyword, tline + sizeof(tline) - keyword, in keywordedit() 558 bool blankline = tline[strspn(tline, " \t\r\n")] == '\0'; in flushline() 565 fputs(tline, output); in flushline() 649 if (fgets(tline, MAXLINE, input) == NULL) in parseline() 652 if (strrchr(tline, '\n') == strrchr(tline, '\r') + 1) in parseline() 659 cp = skipcomment(tline); in parseline() 669 keyword = tline + (cp - tline); in parseline() 722 size_t len = cp - tline; in parseline() 723 if (fgets(tline + len, MAXLINE - len, input) == NULL) { in parseline() [all …]
|