shithub: tlsclient

ref: 11d45ecec19179616e11589d078c2c53d102646c
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}