fxlibc/src/stdio/vscanf.c
Slyvtt 09b33ca2fa
stdlib: scanf implementation by SlyVTT
Authored-By: Slyvtt <pillot.sylvain@gmail.com>
2023-05-26 21:04:37 +02:00

11 lines
185 B
C

#include <stdio.h>
#include <fxlibc/scanf.h>
int vscanf(char const * restrict fmt, va_list args)
{
struct __scanf_input in = {
.fp = stdin,
};
return __scanf(&in, fmt, &args);
}