shithub: tlsclient

ref: 673bb2f19f13a189a9cc8924ebe3c06b56c4cc3b
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}