summaryrefslogtreecommitdiff
path: root/src/stdio/vsnprintf_s.c
blob: f1dbdbd1fb48b2a020a2d758acf1f60bda5374a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#if 0

#include <stdio.h>
#include "_stdio.h"

int vsnprintf_s(char * restrict s, rsize_t n, const char * restrict format, va_list arg)
{
	struct io_options opt = {
		.fnname = __func__,
		.string = s,
		.maxlen = n,
	};
	return __printf(&opt, format, ap);
}

/*
CEXT1(201112)
*/


#endif