9 lines
157 B
C
9 lines
157 B
C
#include <stdlib.h>
|
|
#include <wchar.h>
|
|
|
|
size_t wcstombs(char * __restrict p, const wchar_t * __restrict s, size_t n)
|
|
{
|
|
return wcsrtombs(p, &s, n, NULL);
|
|
}
|
|
|