musl/src/multibyte/wcstombs.c
Rich Felker 771c6cead0 cleanup wcstombs
remove redundant headers and comments; this file is completely trivial
now. also, avoid temp var.
2013-04-04 14:55:42 -04:00

8 lines
168 B
C

#include <stdlib.h>
#include <wchar.h>
size_t wcstombs(char *restrict s, const wchar_t *restrict ws, size_t n)
{
return wcsrtombs(s, &(const wchar_t *){ws}, n, 0);
}