comparison regexParser/regexParser.h @ 191:02031fb73af8 pairPro

remove somefiles and fix header files
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Fri, 25 Dec 2015 16:08:02 +0900
parents 3e8e5780ad4a
children ecf70fb215a5
comparison
equal deleted inserted replaced
190:3e8e5780ad4a 191:02031fb73af8
1 #include "error.h"
2 #define NEW(type) (type*)malloc(sizeof(type)) 1 #define NEW(type) (type*)malloc(sizeof(type))
3 #define SYNTAX_NODENUMBER 100
4 2
5 #ifndef INCLUDED_STRUCT 3 #ifndef INCLUDED_STRUCT
6 #define INCLUDED_STRUCT 4 #define INCLUDED_STRUCT
5
6 #define BITBLOCK 64
7 typedef struct bitVector { 7 typedef struct bitVector {
8 unsigned long bitContainer; 8 unsigned long bitContainer;
9 }BitVector,*BitVectorPtr; 9 } BitVector,*BitVectorPtr;
10 10
11 typedef struct word { 11 typedef struct word {
12 unsigned char *word; 12 unsigned char *word;
13 int length; 13 int length;
14 } Word, *WordPtr; 14 } Word, *WordPtr;