shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}