mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-05-28 22:45:15 +02:00
11 lines
185 B
C
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);
|
|
}
|