comparison regex/Regex.h @ 40:c25b75f764a7

add Regex.h
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 02 Mar 2015 22:18:37 +0900
parents
children ead0a307449e
comparison
equal deleted inserted replaced
39:120c8116e831 40:c25b75f764a7
1 typedef struct result {
2 int matchNum;
3 int matchLineNum;
4 char* matchLine;
5 } Result, *ResultPtr;
6
7 typedef struct bmData {
8 int* skipTable;
9 char* readText;
10 int readTextLen;
11 char* searchWord;
12 int searchWordLen;
13 } BMData, *BMDataPtr;