diff 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
line wrap: on
line diff
--- a/regexParser/regexParser.h	Wed Jan 27 16:37:42 2016 +0900
+++ b/regexParser/regexParser.h	Wed Jan 27 17:41:01 2016 +0900
@@ -60,8 +60,8 @@
 
 typedef struct tState {
     State *state;
-    void (*stateSkip)(tsValue);
-    void (*stateMatch)(tsValue);
+    tsValue (*stateSkip)(tsValue);
+    tsValue (*stateContinue)(tsValue);
     int ccvSize;
     CCVPtr ccv;
 } TState, *TStatePtr;