aboutsummaryrefslogtreecommitdiff
path: root/sys/libunicode/runelen.c
blob: 682400c7e4541759fbbcb15f60c18227b560fb6e (plain)
1
2
3
4
5
6
7
8
#include "internal.h"

int
utf8·runelen(rune r)
{
    byte s[10];
    return utf8·runetobyte(s, &r);
}