don't run this, it's broken
[citadel.git] / citadel / modules / fulltext / ft_wordbreaker.h
index 9e919b3e59bc96a0774f2db540ce0dafd47c9e79..e36d6951e2673660155b6aa634e7e58a6f0d6b41 100644 (file)
@@ -1,22 +1,15 @@
 /*
- * Copyright (c) 2005-2009 by the citadel.org team
+ * Copyright (c) 2005-2021 by the citadel.org team
  *
- *  This program is free software; you can redistribute it and/or modify
- *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 3 of the License, or
- *  (at your option) any later version.
+ * 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.
- *
- *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * 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;
-};