shithub: tlsclient

ref: 1483b68cc8d0b342fcff08e1ad8066f99fd32eb6
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}