shithub: tlsclient

ref: 98c1cd7ae022efe276123898af6b892eade0732c
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}