blob: d5322078bc7a3575cc03cca72fe6e3349d7ab9b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <stdio.h>
#include "stdarg.h"
#include "nonstd/io.h"
int vsscanf(const char * restrict s, const char * restrict format, va_list arg)
{
int ret = 0;
struct io_options opt = {0};
opt.fnname = __func__;
opt.string = (char*)s;
ret = __scanf(&opt, format, arg);
return ret;
}
/*
STDC(199901)
*/
|