1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00
Files
postgres/contrib/tsearch/morph.h
2001-10-25 05:50:21 +00:00

10 lines
154 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