shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}