shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}