diff c/regexParser/bitVector.h @ 116:66c633575b53 pairPro

remove error and warning
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Tue, 24 Nov 2015 17:07:08 +0900
parents a3adc5c24e19
children c292c67b3100
line wrap: on
line diff
--- a/c/regexParser/bitVector.h	Tue Nov 24 14:38:26 2015 +0900
+++ b/c/regexParser/bitVector.h	Tue Nov 24 17:07:08 2015 +0900
@@ -1,5 +1,6 @@
+#include "regexParser.h"
+
 #define BITBLOCK (sizeof(unsigned long) * 8)
-
 typedef struct bitVector {
     int arrayNum;
     unsigned long *bitContainer;
@@ -13,3 +14,7 @@
     bool isLoopAnker;
     bool isLoop;
 }BitVectorList, *BitVectorListPtr;
+
+BitVectorListPtr createBitVector(NodePtr,BitVectorListPtr);
+BitVectorPtr bitSet(int);
+void bitPrint(BitVectorPtr);