Mercurial > hg > Applications > Grep
comparison regexParser/bitVector.cc @ 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 | 109d22faf7b5 |
children |
comparison
equal
deleted
inserted
replaced
190:3e8e5780ad4a | 191:02031fb73af8 |
---|---|
1 #include <stdio.h> | 1 #include <stdio.h> |
2 #include <stdlib.h> | 2 #include <stdlib.h> |
3 #include <string.h> | 3 #include <string.h> |
4 #include "bitVector.h" | 4 #include "regexParser.h" |
5 | 5 |
6 BitVector createBitVector(int state) { | 6 BitVector createBitVector(int state) { |
7 unsigned long tmp = 1 << state; | 7 unsigned long tmp = 1 << state; |
8 BitVector bi1 = (BitVector){.bitContainer = tmp}; | 8 BitVector bi1 = (BitVector){.bitContainer = tmp}; |
9 return bi1; | 9 return bi1; |