shithub: tlsclient

ref: 486f9888ba84132c7705607ded55f55ddd451a6c
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}