comparison c/regexParser/regexParser.h @ 145:50217a0545e8 pairPro

fix charClass()
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 14 Dec 2015 19:39:16 +0900
parents d8a4922eceae
children 6cd0141bed6c
comparison
equal deleted inserted replaced
144:d8a4922eceae 145:50217a0545e8
41 typedef struct regexInfo { 41 typedef struct regexInfo {
42 unsigned char *ptr; 42 unsigned char *ptr;
43 unsigned char tokenType; 43 unsigned char tokenType;
44 unsigned char *tokenValue; 44 unsigned char *tokenValue;
45 int nodeNumber; 45 int nodeNumber;
46 int orNum;
47 bool asterFlag;
48 } RegexInfo, *RegexInfoPtr; 46 } RegexInfo, *RegexInfoPtr;