shithub: tlsclient

ref: 9a7efce5f114ba90987f12b441225b340d554ea6
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}