summaryrefslogtreecommitdiff
path: root/src/wchar/wcrtomb.c
blob: beff645754b3dd39c4239904391e4d91383878f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#if 0

#include <wchar.h>
#include <limits.h>

size_t wcrtomb(char * restrict s, wchar_t wc, mbstate_t * restrict ps)
{
	SIGNAL_SAFE(0);

	char buf[MB_LEN_MAX+1];
	if (s == NULL) {
		s = buf;
		wc = L'\0';
	}
	(void)wc; (void)ps;

	/* do stuff */
	return 0;
}

/*
STDC(199409)
*/


#endif