shithub: tlsclient

ref: 12500b6a21583fc1b314b7c604962a908a9a6f3b
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}