shithub: tlsclient

ref: d76925e3a63f4a275fd0d05f6b1d088fb88a9203
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}