view c/regexParser/word.h @ 120:5d29b6a1b50f testcode

include Word in Node
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Thu, 26 Nov 2015 20:40:30 +0900
parents 31b0ba0050fa
children 4d6ac69801ad
line wrap: on
line source

typedef struct word {
    unsigned char *word;
    int length;
} Word, *WordPtr;

WordPtr getWord(unsigned char*);
int getWordLength(unsigned char* w);