view c/regexParser/subsetConstraction.h @ 139:6c258910cacb pairPro

remove some warning and error
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 07 Dec 2015 02:20:13 +0900
parents 166136236891
children 84a2a5209d3a
line wrap: on
line source

#include "transition.h"

typedef struct transitionGenerator {
    TransitionPtr t;
    StatePtr state;
    long stateMax;
} TransitionGenerator, *TransitionGeneratorPtr;

typedef struct tgValue {
    TransitionPtr t;
    bool asterisk;
} TGValue, *TGValuePtr;

extern TGValuePtr generateTransition(NodePtr n,TransitionGeneratorPtr tg);