view c/regexParser/bitVector.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 ea2810db8d87
children 84a2a5209d3a
line wrap: on
line source

#include "regexParser.h"
#define BITBLOCK 64

typedef struct bitVector {
    unsigned long bitContainer;
}BitVector,*BitVectorPtr;

typedef struct bitVectorList {
    bitVectorList *self;
    bitVectorList *next;
}BitVectorList, *BitVectorListPtr;