xref: /aosp_15_r20/external/musl/src/multibyte/wctomb.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <stdlib.h>
2 #include <wchar.h>
3 
wctomb(char * s,wchar_t wc)4 int wctomb(char *s, wchar_t wc)
5 {
6 	if (!s) return 0;
7 	return wcrtomb(s, wc, 0);
8 }
9