view c/regexParser/bitVector.h @ 138:ea2810db8d87 pairPro

remove warning and error
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Sun, 06 Dec 2015 15:54:05 +0900
parents c292c67b3100
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;