shithub: tlsclient

ref: 0c9cb17126859a6121dd5d79a4e1d664e4e9ba48
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}