Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!lll-crg!caip!brl-adm!brl-smoke!smoke!moss@BRL.ARPA From: moss@BRL.ARPA (Gary S. Moss (SLCBR-VLD-V)) Newsgroups: net.lang.c Subject: Re: Another printf-type question Message-ID: <2610@brl-smoke.ARPA> Date: Mon, 28-Jul-86 09:31:12 EDT Article-I.D.: brl-smok.2610 Posted: Mon Jul 28 09:31:12 1986 Date-Received: Mon, 28-Jul-86 21:20:35 EDT Sender: news@brl-smoke.ARPA Lines: 20 If you don't have the vprintf() library, but do have a _doprnt(), this may be a more desirable, non-portable solution than limiting yourself to 8 args... -moss #include #include /* VARARGS */ void prnt_rvideo( fmt, va_alist ) char *fmt; va_dcl { va_list ap; va_start( ap ); (void) printf( ); (void) _doprnt( fmt, ap, stdout ); (void) printf( ); va_end( ap ); return; }