mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 01:51:51 +00:00
remove redundant headers and comments; this file is completely trivial now. also, avoid temp var.
8 lines
168 B
C
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);
|
|
}
|