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

int snprintf_s( char * restrict s, rsize_t n, const char * restrict format, ...)
{
	SIGNAL_SAFE(0);
	ASSERT_NOOVERLAP(s, n, format, strlen(format));
	(void)s; (void)n; (void)format;
	return 0;
}

/*
CEXT1(201112)
*/