comparison c/regexParser/regexParser.h @ 133:ccc673449351 pairPro

Look ahead '*'
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Thu, 03 Dec 2015 20:47:11 +0900
parents 7925e9abb078
children de0f332d560c
comparison
equal deleted inserted replaced
132:fb4c8adf3a80 133:ccc673449351
38 typedef struct regexInfo { 38 typedef struct regexInfo {
39 unsigned char *ptr; 39 unsigned char *ptr;
40 unsigned char tokenType; 40 unsigned char tokenType;
41 unsigned char *tokenValue; 41 unsigned char *tokenValue;
42 int nodeNumber; 42 int nodeNumber;
43 int orFlag; 43 int orNum;
44 bool astarFlag; 44 bool asterFlag;
45 } RegexInfo, *RegexInfoPtr; 45 } RegexInfo, *RegexInfoPtr;