blob: 920315a627d448b62c23ddd58e8e28a3cd3f8c58 [file]
/* See LICENSE file for copyright and license details. */
#include "utf.h"
int
isgraphrune(Rune r)
{
return !isspacerune(r) && isprintrune(r);
}