shithub: tlsclient

ref: 721c69b2b23bbc846aa0c6cfadcc135830d5d0c9
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}