mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-18 23:11:19 +03:00
12 lines
177 B
C
Executable File
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);
|
|
}
|