Lines Matching refs:line
123 static char line[MAXLINE]; local
137 while (fgets(line, sizeof line, stdin) != NULL)
139 if (line[0] == (char)'\n') /* end of mail headers */
141 if (in_body && (strncmp(line, "From ", 5) == 0))
143 if (in_body || (strncasecmp(line, L_HEADER, LL_HEADER) != 0))
144 fputs(line, mail_fp);
153 static char line[MAXLINE]; local
158 if (fgets(line, sizeof line, stdin) == NULL ||
159 strncmp(line, "From ", 5) != NULL)
166 start = &line[5];
170 usrerr("Funny From line '%s'", line);
270 char line[MAXLINE]; in AutoInstall() local
289 while (fgets(line, MAXLINE, f)) in AutoInstall()
290 printf(" %s", line); in AutoInstall()
326 char line[MAXLINE]; local
331 fgets(line, sizeof (line), stdin);
332 if (line[0] == 'y' || line[0] == 'Y')
334 if (line[0] == 'n' || line[0] == 'N')