shithub: tlsclient

ref: 5667f2e915e89cfda69b3be28b612d59fea1d56b
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}