removed some debugs
[citadel.git] / citadel / modules / fulltext / ft_wordbreaker.h
index b643af57808698fd715003618f3e0e79c74c18fe..e36d6951e2673660155b6aa634e7e58a6f0d6b41 100644 (file)
@@ -1,9 +1,15 @@
 /*
- * $Id$
+ * Copyright (c) 2005-2021 by the citadel.org team
  *
+ * This program is open source software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
  */
 
-
 /*
  * This is an ID for the wordbreaker module.  If we do pluggable wordbreakers
  * later on, or even if we update this one, we can use a different ID so the
 #define WB_MIN                 4       // nothing with 3 or less chars
 #define WB_MAX                 40
 
-void wordbreaker(char *text, int *num_tokens, int **tokens);
-
-void initialize_noise_words(void);
-void noise_word_cleanup(void);
-
-
-typedef struct noise_word noise_word;
-
-struct noise_word {
-       unsigned int len;
-       char *word;
-       noise_word *next;
-};
+void wordbreaker(const char *text, int *num_tokens, int **tokens);