41 lines
594 B
C
41 lines
594 B
C
|
|
#include <_ansi.h>
|
|
#include <stdio.h>
|
|
|
|
#include "c99ppe.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#ifdef INTEGER_ONLY
|
|
# define vsprintf vsiprintf
|
|
#endif
|
|
|
|
typedef struct
|
|
{
|
|
char *str;
|
|
unsigned int pad0[ 3 ];
|
|
char *fmt;
|
|
unsigned int pad1[ 3 ];
|
|
va_list ap;
|
|
} c99_vsprintf_t;
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
int
|
|
vsprintf (char *__restrict str,
|
|
const char *__restrict fmt,
|
|
va_list ap)
|
|
{
|
|
c99_vsprintf_t args;
|
|
|
|
CHECK_STR_INIT(_REENT);
|
|
|
|
args.str = str;
|
|
args.fmt = (char*) fmt;
|
|
va_copy(args.ap,ap);
|
|
|
|
return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_VSPRINTF, &args);
|
|
}
|
|
|
|
#endif /* ! _REENT_ONLY */
|