source: trunk/gsdl/src/mgpp/lib/simplefrenchstem.h@ 855

Last change on this file since 855 was 855, checked in by sjboddie, 24 years ago

Rodgers new C++ mg

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/**************************************************************************
2 *
3 * simplefrenchstem.h -- a simple french stemmer
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * $Id: simplefrenchstem.h 855 2000-01-14 02:17:52Z sjboddie $
20 *
21 **************************************************************************/
22
23/*
24 $Log$
25 Revision 1.1 2000/01/14 02:17:15 sjboddie
26 Rodgers new C++ mg
27
28 Revision 1.1 1999/10/11 02:55:29 cs025
29 Base install of MG-PP
30
31 Revision 1.1 1999/08/10 21:17:04 sjboddie
32 renamed mg-1.3d directory mg
33
34 Revision 1.1 1998/11/25 07:55:37 rjmcnab
35
36 Modified mg to that you can specify the stemmer you want
37 to use via a command line option. You specify it to
38 mg_passes during the build process. The number of the
39 stemmer that you used is stored within the inverted
40 dictionary header and the stemmed dictionary header so
41 the correct stemmer is used in later stages of building
42 and querying.
43
44 Revision 1.1 1998/11/24 06:37:53 rjmcnab
45
46 Incorporated the french stemmer better.
47
48
49 */
50
51#ifndef SIMPLEFRENCHSTEM_H
52#define SIMPLEFRENCHSTEM_H
53
54void simplefrenchstem (unsigned char *word);
55
56#endif
Note: See TracBrowser for help on using the repository browser.