1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-28 05:21:27 +03:00
Tom Lane b57705673d txtidx datatype for full text indexing with GiST.
From Oleg Bartunov and Teodor Sigaev.
2001-10-12 23:19:09 +00:00

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