1
0
mirror of https://github.com/UzixLS/KernelEx.git synced 2025-07-18 23:11:19 +03:00
Files
KernelEx/kexcrt/vsprintf.c
2018-11-03 16:21:13 +03:00

12 lines
177 B
C
Executable File

/*
* vsprintf.c
*/
#include <stdio.h>
#include <stdarg.h>
int vsprintf(char *buffer, const char *format, va_list ap)
{
return vsnprintf(buffer, ~(size_t) 0, format, ap);
}