shithub: tlsclient

ref: 3ab0889db514b8eeb3e675429c9562615211b53e
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}