summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/wctomb.c
blob: 8c66b2c2da649fff4860a03b85443788fcd2c1d5 (plain)
1
2
3
4
5
6
7
8
9
10
#include "stddef.h"
#include <stdlib.h>
#include <wchar.h>

int wctomb(char *s, wchar_t wc)
{
	if (s == NULL)
		return 0;
	return wcrtomb(s, wc, 0);
}