comparison regexParser/regexParser.h @ 300:3e78631a6222

remove ragne list
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 03 Feb 2016 13:56:01 +0900
parents 868f01f1ba8e
children 058c87665213
comparison
equal deleted inserted replaced
299:bdfe0a32c48f 300:3e78631a6222
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;
22 struct utf8Range *next; // only used in the parser.
23 } RangeList , *RangeListPtr; 22 } RangeList , *RangeListPtr;
24 23
25 typedef struct condition { 24 typedef struct condition {
26 RangeList range; 25 RangeList range;
27 Word w; 26 Word w;