Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/***
*vprintf.c - printf from a var args pointer * * Copyright (c) 1985-2001, Microsoft Corporation. All rights reserved. * *Purpose: * defines vprintf() - print formatted data from an argument list pointer * *Revision History: * 09-02-83 RN original printf * 06-17-85 TC rewrote to use new varargs macros to be vprintf * 04-13-87 JCR added const to declaration * 11-06-87 JCR Multi-thread support * 12-11-87 JCR Added "_LOAD_DS" to declaration * 05-31-88 PHG Merged DLL and normal versions * 06-15-88 JCR Near reference to _iob[] entries; improve REG variables * 08-18-89 GJF Clean up, now specific to OS/2 2.0 (i.e., 386 flat * model). Also fixed copyright and indents. * 02-16-90 GJF Fixed copyright * 03-20-90 GJF Made calling type _CALLTYPE1, added #include * <cruntime.h> and removed #include <register.h>. * 07-25-90 SBM Replaced <assertm.h> by <assert.h>, <varargs.h> by * <stdarg.h> * 10-03-90 GJF New-style function declarator. * 04-06-93 SKS Replace _CRTAPI* with __cdecl * 09-06-94 CFW Replace MTHREAD with _MT. * 02-06-94 CFW assert -> _ASSERTE. * 03-07-95 GJF _[un]lock_str macros now take FILE * arg. * 03-02-98 GJF Exception-safe locking. * *******************************************************************************/
#include <cruntime.h>
#include <stdio.h>
#include <dbgint.h>
#include <stdarg.h>
#include <internal.h>
#include <file2.h>
#include <mtdll.h>
/***
*int vprintf(format, ap) - print formatted data from an argument list pointer * *Purpose: * Prints formatted data items to stdout. Uses a pointer to a * variable length list of arguments instead of an argument list. * *Entry: * char *format - format string, describes data format to write * va_list ap - pointer to variable length arg list * *Exit: * returns number of characters written * *Exceptions: * *******************************************************************************/
int __cdecl vprintf ( const char *format, va_list ap ) /*
* stdout 'V'ariable, 'PRINT', 'F'ormatted */ { REG1 FILE *stream = stdout; REG2 int buffing; REG3 int retval;
_ASSERTE(format != NULL);
#ifdef _MT
_lock_str(stream); __try { #endif
buffing = _stbuf(stream); retval = _output(stream, format, ap ); _ftbuf(buffing, stream);
#ifdef _MT
} __finally { _unlock_str(stream); } #endif
return(retval); }
|