ispunctrune.c - sbase - suckless unix tools
 (HTM) git clone git://git.suckless.org/sbase
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       ispunctrune.c (162B)
       ---
            1 /* Automatically generated by mkrunetype.awk */
            2 #include "../utf.h"
            3 #include "runetype.h"
            4 
            5 int
            6 ispunctrune(Rune r)
            7 {
            8         return isgraphrune(r) && !isalnumrune(r);
            9 }