Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
vsprintf.c
pretty
plain
permalink
blame
history
•
7 lines
•
153 B
1
#include <stdio.h>
2
#include <limits.h>
3
4
int vsprintf(char *restrict s, const char *restrict fmt, va_list ap)
5
{
6
	return vsnprintf(s, INT_MAX, fmt, ap);
7
}