Lines Matching refs:line
97 /* read message from standard input (just from line) */
113 ** Reads first line from standard input.
123 static char line[MAXLINE];
136 /* read the line */
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];
157 /* read the from line */
158 if (fgets(line, sizeof line, stdin) == NULL ||
159 strncmp(line, "From ", 5) != NULL)
161 usrerr("No initial From line");
166 start = &line[5];
170 usrerr("Funny From line '%s'", line);
270 char line[MAXLINE];
289 while (fgets(line, MAXLINE, f))
290 printf(" %s", line);
326 char line[MAXLINE];
331 fgets(line, sizeof (line), stdin);
332 if (line[0] == 'y' || line[0] == 'Y')
334 if (line[0] == 'n' || line[0] == 'N')