Mercurial > hg > Applications > Grep
comparison 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 |
comparison
equal
deleted
inserted
replaced
137:c292c67b3100 | 138:ea2810db8d87 |
---|---|
1 #include "regexParser.h" | 1 #include "regexParser.h" |
2 #define BITBLOCK 64 | |
2 | 3 |
3 typedef struct bitVector { | 4 typedef struct bitVector { |
4 unsigned long bitContainer; | 5 unsigned long bitContainer; |
5 }BitVector,*BitVectorPtr; | 6 }BitVector,*BitVectorPtr; |
6 | 7 |
7 typedef struct bitVectorList { | 8 typedef struct bitVectorList { |
8 bitVectorList *self; | 9 bitVectorList *self; |
9 bitVectorList *next; | 10 bitVectorList *next; |
10 }BitVectorList, *BitVectorListPtr; | 11 }BitVectorList, *BitVectorListPtr; |
11 | |
12 extern BitVectorListPtr createBitVector(NodePtr node); | |
13 extern BitVectorPtr bitSet(BitVector bitVetor,int bitPosition); | |
14 extern void bitPrint(BitVectorPtr bitVector); |