shithub: tlsclient

ref: 1091ff45d45553ea1c094094961b86dbe20c1fb9
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}