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