shithub: tlsclient

ref: 3163e5253240db5a98d05b8392704dd8c99fc196
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}