shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}