comparison regexParser/regexParser.h @ 310:df27e6cab846

CharClassMerge with Word ( no match implementation )
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 08 Feb 2016 19:23:37 +0900
parents 058c87665213
children a4484c02cba5
comparison
equal deleted inserted replaced
309:058c87665213 310:df27e6cab846
11 typedef struct word { 11 typedef struct word {
12 unsigned char *word; 12 unsigned char *word;
13 int length; 13 int length;
14 // look up table for BM search. 14 // look up table for BM search.
15 // BitVector nextState; 15 // BitVector nextState;
16 // struct word *next; 16 struct word *next;
17 } Word, *WordPtr; 17 } Word, *WordPtr;
18 18
19 typedef struct utf8Range { 19 typedef struct utf8Range {
20 unsigned long begin; 20 unsigned long begin;
21 unsigned long end; 21 unsigned long end;