Lines Matching refs:ARGS
18 static void ptree ARGS((struct op *t, int indent, struct shf *f));
19 static void pioact ARGS((struct shf *f, int indent, struct ioword *iop));
20 static void tputC ARGS((int c, struct shf *shf));
21 static void tputS ARGS((char *wp, struct shf *shf));
22 static void vfptreef ARGS((struct shf *shf, int indent, const char *fmt, va_list va));
23 static struct ioword **iocopy ARGS((struct ioword **iow, Area *ap));
24 static void iofree ARGS((struct ioword **iow, Area *ap));
50 if (t->args)
51 for (w = t->args; *w != NULL; )
54 fptreef(shf, indent, "#no-args# ");
65 if (t->args)
66 for (w = t->args; *w != NULL; )
69 fptreef(shf, indent, "#no-args# ");
101 for (i = 0; t->args[i]; i++)
102 fptreef(shf, indent, " %S", t->args[i]);
374 * variable args with an ANSI compiler
507 if (t->args == NULL)
508 r->args = NULL;
510 for (tw = t->args; *tw++ != NULL; )
512 rw = r->args = (char **)
513 alloc((tw - t->args + 1) * sizeof(*tw), ap);
514 for (tw = t->args; *tw != NULL; )
718 if (t->args != NULL) {
719 for (w = t->args; *w != NULL; w++)
721 afree((void*)t->args, ap);