shithub: tlsclient

ref: 396f8f369db25a0d6b0120ea08ecc84d089b8202
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}