shithub: tlsclient

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}