shithub: tlsclient

ref: 496817c742f8bc9a625c3fb77dd7332e75f89be6
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}