shithub: tlsclient

ref: 13b4ffb9da011aadac40ddd35b47e7b914d1775b
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}