summaryrefslogtreecommitdiff
path: root/sys/src/libc/port/runestrlen.c
blob: 2bf4a4eb6b28a07057477da44036e231542d01db (plain)
1
2
3
4
5
6
7
8
9
#include <u.h>
#include <libc.h>

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}