10 lines
151 B
C
10 lines
151 B
C
|
#ifndef __MORPH_H__
|
||
|
#define __MORPH_H__
|
||
|
|
||
|
void initmorph(void);
|
||
|
|
||
|
char* lemmatize( char* word, int *len, int type );
|
||
|
|
||
|
bool is_stoptype(int type);
|
||
|
#endif
|