shithub: tlsclient

ref: 9151a6a7e52b0890ea89a356f6d2eb8873585860
dir: /libc/runestrlen.c/

View raw version
#include <u.h>
#include <libc.h>

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}