shithub: tlsclient

ref: f706eeb4e140a2e8ae9f37fda4f766953f602f89
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}