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