diff c/regexParser/bitVector.h @ 86:1d7ca366b199

add bitVector
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 19 Oct 2015 18:04:05 +0900
parents
children 43b807f88961
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/c/regexParser/bitVector.h	Mon Oct 19 18:04:05 2015 +0900
@@ -0,0 +1,9 @@
+typedef struct bitVector {
+    int arrayNum;
+    unsigned long *bitContainer;
+}BitVector,*BitVectorPtr;
+
+typedef struct bitVectorList {
+    BitVector bi;
+    BitVectorPtr next[256];
+}BitVectorList, *BitVectorListPtr;