don't run this, it's broken
[citadel.git] / citadel / modules / fulltext / ft_wordbreaker.h
index 10a0651da6d37c953b5387fbaa168939dbd7be7d..e36d6951e2673660155b6aa634e7e58a6f0d6b41 100644 (file)
@@ -1,22 +1,15 @@
 /*
- * Copyright (c) 2005-2012 by the citadel.org team
+ * 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 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 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_MAX                 40
 
 void wordbreaker(const 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;
-};