2001-10-12 23:19:09 +00:00
|
|
|
#ifndef __MORPH_H__
|
|
|
|
#define __MORPH_H__
|
|
|
|
|
2001-10-25 05:50:21 +00:00
|
|
|
void initmorph(void);
|
2001-10-12 23:19:09 +00:00
|
|
|
|
2001-10-25 05:50:21 +00:00
|
|
|
char *lemmatize(char *word, int *len, int type);
|
2001-10-12 23:19:09 +00:00
|
|
|
|
2001-10-25 05:50:21 +00:00
|
|
|
bool is_stoptype(int type);
|
2001-10-28 06:26:15 +00:00
|
|
|
|
2001-10-12 23:19:09 +00:00
|
|
|
#endif
|