Sign in
◑
Theme
chromium
/
external
/
github.com
/
cls
/
libutf
/
ce4eaaccf07b6ec00d9f8bc4395c50b7ea63741c
/
.
/
src
/
isgraphrune.c
blob: 920315a627d448b62c23ddd58e8e28a3cd3f8c58 [
file
]
/* See LICENSE file for copyright and license details. */
#include
"utf.h"
int
isgraphrune
(
Rune
r
)
{
return
!
isspacerune
(
r
)
&&
isprintrune
(
r
);
}