summaryrefslogtreecommitdiff
path: root/src/stdio/vsscanf.c
blob: dcf40db89a74563aa083291adddfb485df83d830 (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 "_stdio.h"

int vsscanf(const char * restrict s, const char * restrict format, va_list arg)
{
	struct io_options opt = {
		.fnname = __func__,
		.string = (char*)s,
	};

	return __scanf(&opt, format, arg);
}

/*
STDC(199901)
*/