shithub: tlsclient

ref: 9ff908d2e99557534056889b6673d7710c37a4c7
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}