view c/regexParser/bitVector.h @ 87:aef2546cd130

fix
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 19 Oct 2015 20:10:42 +0900
parents 1d7ca366b199
children 43b807f88961
line wrap: on
line source

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

typedef struct bitVectorList {
    BitVector bi;
    BitVectorPtr next[256];
}BitVectorList, *BitVectorListPtr;