shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}