comparison c/regexParser/word.h @ 125:4d6ac69801ad pairPro

fix createNode
author Nozomi
date Tue, 01 Dec 2015 21:11:27 +0900
parents 5d29b6a1b50f
children
comparison
equal deleted inserted replaced
123:8ce93ffaf1ad 125:4d6ac69801ad
1 typedef struct word { 1 typedef struct word {
2 unsigned char *word; 2 unsigned char *word;
3 int length; 3 int length;
4 } Word, *WordPtr; 4 } Word, *WordPtr;
5
6 WordPtr getWord(unsigned char*);
7 int getWordLength(unsigned char* w);