mirror of
https://github.com/fluencelabs/musl
synced 2025-07-05 01:22:04 +00:00
9 lines
122 B
C
9 lines
122 B
C
![]() |
#include <stdlib.h>
|
||
|
#include <wchar.h>
|
||
|
|
||
|
int wctomb(char *s, wchar_t wc)
|
||
|
{
|
||
|
if (!s) return 0;
|
||
|
return wcrtomb(s, wc, 0);
|
||
|
}
|