comparison c/regexParser/regexParser.h @ 125:4d6ac69801ad pairPro

fix createNode
author Nozomi
date Tue, 01 Dec 2015 21:11:27 +0900
parents 188d866227a4
children 639b0b437ebf
comparison
equal deleted inserted replaced
123:8ce93ffaf1ad 125:4d6ac69801ad
3 typedef union condition { 3 typedef union condition {
4 struct utf8Range { 4 struct utf8Range {
5 unsigned char *begin; 5 unsigned char *begin;
6 unsigned char *end; 6 unsigned char *end;
7 struct utf8Range *next; 7 struct utf8Range *next;
8 } rangeList; 8 } *rangeList;
9 unsigned char character; 9 unsigned char character;
10 WordPtr w; 10 WordPtr w;
11 } Condition, *ConditionList; 11 } Condition, *ConditionList;
12 12
13 typedef struct charClass { 13 typedef struct charClass {