shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}