shithub: tlsclient

ref: 9fe184eb7f41fc76c2196e8d84d6f188c3469a93
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}