aboutsummaryrefslogtreecommitdiff
path: root/src/multibyte/c32rtomb.c
blob: c10531af24f76a5a78a6cc0d94e6c626067cf6ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <uchar.h>
#include <wchar.h>

size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps)
{
	return wcrtomb(s, c32, ps);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif