3 * The Regents of the University of California. All rights reserved.
5 * %sccs.include.redist.c%
9 static char sccsid
[] = "$Id: ex_util.c,v 8.4 1993/12/09 19:42:50 bostic Exp $ (Berkeley) $Date: 1993/12/09 19:42:50 $";
12 #include <sys/types.h>
23 * Return a line from the terminal.
26 ex_getline(sp
, fp
, lenp
)
37 for (off
= 0, p
= exp
->ibp
;; ++off
) {
39 if (off
>= exp
->ibp_len
) {
40 BINC_RET(sp
, exp
->ibp
, exp
->ibp_len
, off
+ 1);
43 if (ch
== EOF
|| ch
== '\n') {
44 if (ch
== EOF
&& !off
)