shithub: tlsclient

ref: 2707b65003cbbc8c1c8990e0b3475f13b424cb28
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}