comparison regexParser/regexParser.h @ 264:ef95a7f1bc03

implement tSearch
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Wed, 27 Jan 2016 17:41:01 +0900
parents ebb429c2b6a7
children e51cac73e42a
comparison
equal deleted inserted replaced
263:292753bb31e4 264:ef95a7f1bc03
58 struct tState *tState; 58 struct tState *tState;
59 } CCV,*CCVPtr; 59 } CCV,*CCVPtr;
60 60
61 typedef struct tState { 61 typedef struct tState {
62 State *state; 62 State *state;
63 void (*stateSkip)(tsValue); 63 tsValue (*stateSkip)(tsValue);
64 void (*stateMatch)(tsValue); 64 tsValue (*stateContinue)(tsValue);
65 int ccvSize; 65 int ccvSize;
66 CCVPtr ccv; 66 CCVPtr ccv;
67 } TState, *TStatePtr; 67 } TState, *TStatePtr;
68 68
69 typedef struct result { 69 typedef struct result {