shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}