summaryrefslogtreecommitdiff
path: root/src/stdio/snprintf_s.c
blob: 6f6ac1df2f141220192b8244930a60e6c04b554b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <string.h>
#include "_format.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)
*/