mirror of
https://github.com/reactos/reactos.git
synced 2025-07-02 15:11:22 +00:00
[CMAKE]
Sync trunk up to r50477. svn path=/branches/cmake-bringup/; revision=50504
This commit is contained in:
commit
e2b7eacdd5
162 changed files with 4613 additions and 6228 deletions
|
@ -6,33 +6,7 @@
|
|||
* PROGRAMMER: Timo Kreuzer
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <limits.h>
|
||||
|
||||
int _cdecl streamout(FILE *stream, const char *format, va_list argptr);
|
||||
|
||||
int
|
||||
_cdecl
|
||||
sprintf(char *buffer, const char *format, ...)
|
||||
{
|
||||
va_list argptr;
|
||||
int result;
|
||||
FILE stream;
|
||||
|
||||
stream._base = buffer;
|
||||
stream._ptr = stream._base;
|
||||
stream._charbuf = 0;
|
||||
stream._bufsiz = INT_MAX;
|
||||
stream._cnt = stream._bufsiz;
|
||||
stream._flag = 0;
|
||||
stream._tmpfname = 0;
|
||||
|
||||
va_start(argptr, format);
|
||||
result = streamout(&stream, format, argptr);
|
||||
va_end(argptr);
|
||||
|
||||
*stream._ptr = '\0';
|
||||
return result;
|
||||
}
|
||||
#define _sxprintf sprintf
|
||||
#define USE_COUNT 0
|
||||
|
||||
#include "_sxprintf.c"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue