shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}