Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
multibyte
wctomb.c
pretty
plain
permalink
blame
history
•
8 lines
•
122 B
1
#include <stdlib.h>
2
#include <wchar.h>
3
4
int wctomb(char *s, wchar_t wc)
5
{
6
	if (!s) return 0;
7
	return wcrtomb(s, wc, 0);
8
}