shithub: tlsclient

ref: 370c2a5ee086243da420e5c569b10880d85c05e2
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}