shithub: tlsclient

ref: 0c24162f1cb4527560a11223645d34f3791dc5a4
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}