blob: 7654abd341aa5120ad9103a33fc75f4cc1f14c3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include <string.h>
#include "_stdio.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)
*/
|