Searched refs:ibufp (Results 1 - 6 of 6) sorted by relevance

/freebsd-10-stable/bin/ed/
H A Dre.c48 if ((delimiter = *ibufp) == ' ') {
51 } else if (delimiter == '\n' || *++ibufp == '\n' || *ibufp == delimiter) {
87 for (nd = ibufp; *nd != delimiter && *nd != '\n'; nd++)
104 len = nd - ibufp;
106 memcpy(lhbuf, ibufp, len);
108 ibufp = nd;
H A Dsub.c46 if ((delimiter = *ibufp) == '\n') {
52 else if (*ibufp == '\n') {
55 } else if (*ibufp == delimiter)
56 ibufp++;
57 if ('1' <= *ibufp && *ibufp <= '9') {
58 STRTOL(*np, ibufp);
60 } else if (*ibufp == 'g') {
61 ibufp++;
77 char delimiter = *ibufp
[all...]
H A Dmain.c81 char *ibufp; /* pointer to ed command-line buffer */ variable
273 if (*ibufp != ',' && *ibufp != ';')
275 else if (*ibufp++ == ';')
284 #define SKIP_BLANKS() while (isspace((unsigned char)*ibufp) && *ibufp != '\n') ibufp++
304 for (hd = ibufp;; first = 0)
305 switch (c = *ibufp) {
311 ibufp
[all...]
H A Dglbl.c49 if ((delimiter = *ibufp) == ' ' || delimiter == '\n') {
54 else if (*ibufp == delimiter)
55 ibufp++;
86 if (!strcmp(ibufp, "\n"))
126 ibufp = cmd;
127 for (; *ibufp;)
H A Dio.c224 char *t = ibufp;
228 if ((l = t - ibufp) < 2 || !has_trailing_escape(ibufp, ibufp + l - 1)) {
230 return ibufp;
234 memcpy(cvbuf, ibufp, l);
277 ibufp = ibuf;
284 ibufp = NULL;
293 ibufp = ibuf;
H A Ded.h261 extern char *ibufp;

Completed in 60 milliseconds