shithub: tlsclient

ref: 48a4cc7cb98050a324ed2d2d4acae901cf072b35
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}