mirror of https://github.com/0intro/conterm
10 lines
94 B
C
10 lines
94 B
C
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
|
||
|
long
|
||
|
runestrlen(Rune *s)
|
||
|
{
|
||
|
|
||
|
return runestrchr(s, 0) - s;
|
||
|
}
|