diff options
Diffstat (limited to 'src/multibyte/wctomb.c')
-rw-r--r-- | src/multibyte/wctomb.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/multibyte/wctomb.c b/src/multibyte/wctomb.c new file mode 100644 index 0000000..6910ef3 --- /dev/null +++ b/src/multibyte/wctomb.c @@ -0,0 +1,18 @@ +/* + * This code was written by Rich Felker in 2010; no copyright is claimed. + * This code is in the public domain. Attribution is appreciated but + * unnecessary. + */ + +#include <stdlib.h> +#include <inttypes.h> +#include <wchar.h> +#include <errno.h> + +#include "internal.h" + +int wctomb(char *s, wchar_t wc) +{ + if (!s) return 0; + return wcrtomb(s, wc, 0); +} |