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