📄 swedish.c
字号:
/** * @file * Interface to Xapian swedish stemmer. * * @author Mikael Ylikoski * @date 2001-2002 */#include <stdio.h>#include <string.h>#include "stemmer.h"#include "stemmers/stem_swedish.h"static void *data; /**< Stemmer data *//** * Stemming function. */static char *swedish_stem_word (char *word) { return (char *)swedish_stem (data, word, strlen (word));}/** * Initialize stemmer. */static intswedish_stemmer_init (void) { data = setup_swedish_stemmer (); return 0;}/** * Free memory used by stemmer. */static voidswedish_stemmer_free (void) { closedown_swedish_stemmer (data);}/** * Keep cygwin happy. */intmain (void) { return 0;}/** * Stemmer language. */const char *my_stemmer_language = "sv";/** * Stemmer functions. */const stemmer_functions my_functions = { .stem_word = swedish_stem_word, .init = swedish_stemmer_init, .free = swedish_stemmer_free};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -