Mercurial > hg > Applications > Grep
view regex/Regex.h @ 55:883e3473a9f5
fix
author | Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Jun 2015 23:40:09 +0900 |
parents | ead0a307449e |
children |
line wrap: on
line source
typedef struct result { int matchNum; int matchLineNum; char* matchLine; } Result, *ResultPtr; typedef struct bmData { int* skipTable; char* readText; int readTextLen; char* searchWord; int searchWordLen; } BMData, *BMDataPtr; typedef struct regexData { char* readText; int readTextLen; char* searchWord; int searchWordLen; char** matchLinesHeads; char* matchLineNum; } RegexData, *RegexDataPtr;