Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
multibyte
wcstombs.c
pretty
plain
permalink
blame
history
•
7 lines
•
168 B
1
#include <stdlib.h>
2
#include <wchar.h>
3
4
size_t wcstombs(char *restrict s, const wchar_t *restrict ws, size_t n)
5
{
6
	return wcsrtombs(s, &(const wchar_t *){ws}, n, 0);
7
}