shithub: tlsclient

ref: 7adde97848fd846c9848486a19ad94b1f8920f53
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}