~snowball-yiddish-dev/snowball-yiddish/trunk

« back to all changes in this revision

Viewing changes to snowball/libstemmer/libstemmer.h

  • Committer: richard
  • Date: 2003-05-30 19:21:00 UTC
  • Revision ID: svn-v4:633ccae0-01f4-0310-8c99-d3591da6f01f:trunk:224
Neaten the interface a bit, make the test build again, add lovins stemmer,
add all the aliases used by Xapian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
/* FIXME - should be able to get a version number for each stemming
11
11
 * algorithm (which will be incremented each time the output changes). */
12
12
/* FIXME - should be able to get a list of available stemmers. */
13
 
struct sb_stemmer * sb_stemmer_create(const char * algorithm);
14
 
void                sb_stemmer_release(struct sb_stemmer * stemmer);
 
13
struct sb_stemmer * sb_stemmer_new(const char * algorithm);
 
14
void                sb_stemmer_delete(struct sb_stemmer * stemmer);
15
15
 
16
16
/* FIXME - this should return the length of the stemmed word. */
17
17
const sb_symbol *   sb_stemmer_stem(struct sb_stemmer * stemmer,