shithub: tlsclient

ref: 6f1f1082657c69408ad0641a724d9a74093b37a3
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}