shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}