shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}