Mercurial > hg > Members > masakoha > testcode
view c/regexParser/bitVector.h @ 137:c292c67b3100 pairPro
add generateTransitionList function
author | masa |
---|---|
date | Fri, 04 Dec 2015 20:32:09 +0900 |
parents | 66c633575b53 |
children | ea2810db8d87 |
line wrap: on
line source
#include "regexParser.h" typedef struct bitVector { unsigned long bitContainer; }BitVector,*BitVectorPtr; typedef struct bitVectorList { bitVectorList *self; bitVectorList *next; }BitVectorList, *BitVectorListPtr; extern BitVectorListPtr createBitVector(NodePtr node); extern BitVectorPtr bitSet(BitVector bitVetor,int bitPosition); extern void bitPrint(BitVectorPtr bitVector);