view c/regexParser/word.h @ 123:8ce93ffaf1ad pairPro

fix Makefile
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Tue, 01 Dec 2015 00:09:09 +0900
parents 5d29b6a1b50f
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);