mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-06-01 16:35:12 +02:00
11 lines
198 B
C
11 lines
198 B
C
#include <stdio.h>
|
|
#include "stdio_p.h"
|
|
|
|
int vfscanf(FILE * restrict fp, char const * restrict fmt, va_list args)
|
|
{
|
|
struct __scanf_input in = {
|
|
.fp = fp,
|
|
};
|
|
|
|
return __scanf(&in, fmt, &args);
|
|
}
|