Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
fusl
/
src
/
stdio
/
vsprintf.c
blob: 5f39c9b32f160c822515e4ea0b22a0e63c306061 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<limits.h>
int
vsprintf
(
char
*
restrict s
,
const
char
*
restrict fmt
,
va_list ap
)
{
return
vsnprintf
(
s
,
INT_MAX
,
fmt
,
ap
);
}