mk_module_init.sh now tests to see if echo supports -e and -E
[citadel.git] / citadel / ft_wordbreaker.h
1 /*
2  * $Id$
3  *
4  */
5
6
7 /*
8  * This is an ID for the wordbreaker module.  If we do pluggable wordbreakers
9  * later on, or even if we update this one, we can use a different ID so the
10  * system knows it needs to throw away the existing index and rebuild it.
11  */
12 #define FT_WORDBREAKER_ID       0x001f
13
14 /*
15  * Minimum and maximum length of words to index
16  */
17 #define WB_MIN                  3
18 #define WB_MAX                  40
19
20 void wordbreaker(char *text, int *num_tokens, int **tokens);
21