diff c/regexParser/regexParser.h @ 144:d8a4922eceae pairPro

remove some errors (not working)
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 14 Dec 2015 17:14:33 +0900
parents de0f332d560c
children 50217a0545e8
line wrap: on
line diff
--- a/c/regexParser/regexParser.h	Fri Dec 11 15:04:58 2015 +0900
+++ b/c/regexParser/regexParser.h	Mon Dec 14 17:14:33 2015 +0900
@@ -2,6 +2,10 @@
 
 #define NEW(type) (type*)malloc(sizeof(type))
 
+typedef struct bitVector {
+    unsigned long bitContainer;
+}BitVector,*BitVectorPtr;
+
 typedef struct word {
     unsigned char *word;
     int length;