Lines Matching defs:start
177 char *curr ,*start,*end;
180 curr = start = tm->buff2+tm->buff2_avail;
238 memcpy(start, toybuf, i);
239 memcpy(start + i, end - tm->rem, tm->rem); //put remaining if we break;
243 static int dup_iacs(char *start, int fd, int len)
250 if (*start == IAC) {
253 start++;
258 needle = memchr(start, IAC, len);
259 if (needle) c = needle - start;
261 count = writeall(fd, start, c);
265 start += count;