shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}