Lines Matching defs:ip
75 * get next token on ip
79 token(register Sfio_t* ip)
89 switch (c = sfgetc(ip))
98 sfungetc(ip, c);
105 sfungetc(ip, c);
120 * uncomment ip into op
124 nocomment(register Sfio_t* ip, Sfio_t* op)
146 c = sfgetc(ip);
156 sfmove(ip, op, SF_UNBOUND, -1);
160 switch (c = sfgetc(ip))
208 switch (c = sfgetc(ip))
261 if (s = token(ip))
268 if (s = sfgetr(ip, '\n', 1))
284 if ((s = token(ip)) && streq(s, "prototyped"))
287 if (c = sffileno(ip))
293 sfseek(ip, (Sfoff_t)(-1), SEEK_CUR);
294 sfsync(ip);
296 ip = pp;
324 switch (c = sfgetc(ip))
329 for (;;) switch (p = c, c = sfgetc(ip))
347 for (;;) switch (p = c, c = sfgetc(ip))
358 switch (c = sfgetc(ip))
389 switch (c = sfgetc(ip))
395 switch (c = sfgetc(ip))
426 count = count < 0 ? 0 : (sferror(ip) || sferror(op)) ? -1 : (sftell(op) - count);