Lines Matching refs:line
94 /* read message from standard input (just from line) */
110 ** Reads first line from standard input.
120 static char line[MAXLINE];
133 /* read the line */
134 while (fgets(line, sizeof line, stdin) != NULL)
136 if (line[0] == (char)'\n') /* end of mail headers */
138 if (in_body && (strncmp(line, "From ", 5) == 0))
140 if (in_body || (strncasecmp(line, L_HEADER, LL_HEADER) != 0))
141 fputs(line, mail_fp);
150 static char line[MAXLINE];
154 /* read the from line */
155 if (fgets(line, sizeof line, stdin) == NULL ||
156 strncmp(line, "From ", 5) != NULL)
158 usrerr("No initial From line");
163 start = &line[5];
167 usrerr("Funny From line '%s'", line);
267 char line[MAXLINE];
286 while (fgets(line, MAXLINE, f))
287 printf(" %s", line);
323 char line[MAXLINE];
328 fgets(line, sizeof (line), stdin);
329 if (line[0] == 'y' || line[0] == 'Y')
331 if (line[0] == 'n' || line[0] == 'N')