shithub: tlsclient

ref: 02a90877ad29b7f1037ea577bee828a2f259a7e1
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}