Parent Directory
|
Revision Log
|
Revision Graph
Importing web-site building process.
1 | adcroft | 1.1 | /* |
2 | ** stemmer.h | ||
3 | */ | ||
4 | |||
5 | typedef enum { | ||
6 | STEM_OK, | ||
7 | STEM_NOT_ALPHA, /* not all alpha */ | ||
8 | STEM_TOO_SMALL, /* word too small to be stemmed */ | ||
9 | STEM_WORD_TOO_BIG, /* word it too large to stem, would would be too large */ | ||
10 | STEM_TO_NOTHING /* word stemmed to the null string */ | ||
11 | |||
12 | } STEM_RETURNS; | ||
13 | |||
14 | |||
15 | int Stem (char **, int *); | ||
16 |
ViewVC Help | |
Powered by ViewVC 1.1.22 |