Mercurial > hg > Members > masakoha > testcode
view regex/Regex.h @ 85:5072a44ed842
add Word
author | masa |
---|---|
date | Thu, 08 Oct 2015 20:07:32 +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;