Lines Matching refs:line

307 **		a pointer to the end of the line if character is not found
450 xalloc_tagged(sz, file, line)
453 int line;
470 p = sm_malloc_tagged((unsigned) sz, file, line, sm_heap_group());
563 ** LOG_SENDMAIL_PID -- record sendmail pid and command line.
572 ** writes pidfile, logs command line.
607 /* write the process id on line 1 */
611 /* line 2 contains all command line flags */
920 ** MAKELOWER -- Translate a line into lower case
947 ** FIXCRLF -- fix <CR><LF> in line.
950 ** UNIX canonical <NL> character. It only takes one line,
952 ** of the line.
955 ** line -- the line to fix.
962 ** line is changed in place.
966 fixcrlf(line, stripnl)
967 char *line;
972 p = strchr(line, '\n');
975 if (p > line && p[-1] == '\r')
983 ** PUTLINE -- put a line like fputs obeying SMTP conventions
989 ** l -- line to put.
993 ** true iff line was written successfully
1014 ** l -- line to put.
1015 ** len -- the length of the line.
1025 ** true iff line was written successfully
1084 /* find the end of the line */
1096 /* check for line overflow */
1266 ** buf -- place to put the input line.
1381 ** input line(s) on success, NULL on error or SM_IO_EOF.
1382 ** This will normally be buf -- unless the line is too
1389 ** Increases LineNumber for each line.
1686 ** where -- tag for printing. If null, take a base line.
2192 ** GET_COLUMN -- look up a Column in a line buffer
2195 ** line -- the raw text line to search.
2208 get_column(line, col, delim, buf, buflen)
2209 char line[];
2228 p = line;
2230 return NULL; /* line empty */
2234 begin = line;
2743 ** prefix -- string to output in front of each line.