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