shithub: tlsclient

ref: 31165ca54d92ef368b10cda17b73eaf16e685748
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}