19 lines
304 B
C
19 lines
304 B
C
/* Automatically generated by mkrunetype.awk */
|
|
#include <stdlib.h>
|
|
|
|
#include "../utf.h"
|
|
#include "runetype.h"
|
|
|
|
static Rune cntrl2[][2] = {
|
|
{ 0x0000, 0x001F },
|
|
{ 0x007F, 0x009F },
|
|
};
|
|
|
|
int
|
|
iscntrlrune(Rune r)
|
|
{
|
|
if(bsearch(&r, cntrl2, nelem(cntrl2), sizeof *cntrl2, &rune2cmp))
|
|
return 1;
|
|
return 0;
|
|
}
|