shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}