Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
multibyte
c32rtomb.c
pretty
plain
permalink
blame
history
•
7 lines
•
144 B
1
#include <uchar.h>
2
#include <wchar.h>
3
4
size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps)
5
{
6
	return wcrtomb(s, c32, ps);
7
}