int verbose; /* VARARGS 1 */ vprint (str) char *str; { char **strp; if (!verbose) return; strp = &str; while (*strp) printf (*strp++); return; }