mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
6783b2372e
spacing. Also adds space for one-line comments.
11 lines
155 B
C
11 lines
155 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
|