?? vprintf.c
字號:
/***
*vprintf.c - printf from a var args pointer
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* defines vprintf() - print formatted data from an argument list pointer
*
*******************************************************************************/
#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);
_lock_str(stream);
buffing = _stbuf(stream);
retval = _output(stream, format, ap );
_ftbuf(buffing, stream);
_unlock_str(stream);
return(retval);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -