blob: f5a0a31bcc820038ef58c1c8758c0ccba0a1c4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdarg.h>
#include <string.h>
#include "_format.h"
int vsscanf_s(const char * restrict s, const char * restrict format, va_list arg)
{
SIGNAL_SAFE(0);
ASSERT_NOOVERLAP(s, strlen(s), format, strlen(format));
(void)s; (void)format; (void)arg;
return 0;
}
/*
CEXT1(201112)
*/
|