blob: c4257b09b0962599189daf798a63a68c0811f24c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <uchar.h>
#include "_safety.h"
size_t c32rtomb(char * restrict s, char32_t c32, mbstate_t * restrict ps)
{
SIGNAL_SAFE(0);
(void)s; (void)c32; (void)ps;
return 0;
}
/*
STDC(201112)
*/
|