summaryrefslogtreecommitdiff
path: root/src/stdio/vfscanf_s.c
blob: 47add45cc00ed0ba64af5c16c15e199e3c6f9084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <string.h>
#include "_format.h"

int vfscanf_s(FILE * restrict stream, const char * restrict format, va_list arg)
{
	SIGNAL_SAFE(0);
	ASSERT_NOOVERLAP(stream, sizeof(*stream), format, strlen(format));

	(void)stream; (void)format; (void)arg;
	return 0;
}

/*
CEXT1(201112)
*/