comparison 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
comparison
equal deleted inserted replaced
143:32977f5a2ed0 144:d8a4922eceae
1 #include "error.h" 1 #include "error.h"
2 2
3 #define NEW(type) (type*)malloc(sizeof(type)) 3 #define NEW(type) (type*)malloc(sizeof(type))
4
5 typedef struct bitVector {
6 unsigned long bitContainer;
7 }BitVector,*BitVectorPtr;
4 8
5 typedef struct word { 9 typedef struct word {
6 unsigned char *word; 10 unsigned char *word;
7 int length; 11 int length;
8 } Word, *WordPtr; 12 } Word, *WordPtr;