Mercurial > hg > Applications > Grep
view c/regexParser/bitVector.h @ 110:a3adc5c24e19 pairPro
start branch
author | masa |
---|---|
date | Fri, 20 Nov 2015 21:02:00 +0900 |
parents | 6401c708f5dd |
children | 66c633575b53 |
line wrap: on
line source
#define BITBLOCK (sizeof(unsigned long) * 8) typedef struct bitVector { int arrayNum; unsigned long *bitContainer; }BitVector,*BitVectorPtr; typedef struct bitVectorList { bitVectorList *self; BitVectorPtr bi; bitVectorList* initBvl; bitVectorList* next[256]; bool isLoopAnker; bool isLoop; }BitVectorList, *BitVectorListPtr;