summaryrefslogtreecommitdiff
path: root/src/wchar/swprintf_s.c
blob: ade55f4e1faf80965b9c55b0766036c67ed8b0da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "wchar.h"

int swprintf_s(wchar_t * restrict s, rsize_t n, const wchar_t * restrict format,
	...)
{
	__C_EXT(1, 201112L);
	va_list ap;
	va_start(ap, format);
	int ret = vswprintf_s(s, n, format, ap);
	va_end(ap);
	return ret;
}

/*
CEXT1(201112)
*/