18 lines
456 B
C
18 lines
456 B
C
/***
|
|
*sprintf.c - print formatted to string
|
|
*
|
|
* Copyright (c) 1985-1991, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* defines w4sprintf() - print formatted data to string
|
|
* defines w4vsprintf() - print formatted output to a string, get data
|
|
* from an argument ptr instead of explicit args.
|
|
*******************************************************************************/
|
|
|
|
#if DBG == 1
|
|
|
|
#define _W4SPRINTF_
|
|
#include "printf.h"
|
|
|
|
#endif
|