Path: utzoo!attcan!uunet!taumet!steve From: steve@taumet.com (Stephen Clamage) Newsgroups: comp.std.c Subject: Re: vprintf() Message-ID: <360@taumet.com> Date: 28 Jul 90 22:38:00 GMT References: Distribution: comp.std.c Organization: Taumetric Corporation, San Diego Lines: 17 chin@ankh.ankh.ftl.fl.us (Albert Chin) writes: >Is vprintf() mandated to be in by ANSI C. Yes, in a "hosted" implementation. Section 4.9.6.8 of the standard. > My "ANSI" compiler doesn't have it ... Complain to the vendor. It is not an ANSI-conforming compiler (in a "hosted" implementation) if vprintf() is missing. To implement vprintf(), you usually need to know the underlying implementation of printf(). The various members of the printf() family generally set up a call to a special function (often called something like _doprint). You need to know what this is and how to call it in order to implement vprintf(). -- Steve Clamage, TauMetric Corp, steve@taumet.com