📄 porter.c
字号:
/** * @file * Interface to porter stemmer. * * @author Mikael Ylikoski * @date 2002 */#include <stdio.h>#include "stemmer.h"#include "stemmers/stem_porter.h"/** * Stemming function. */static char *porter_stem_word (char *word) { porter_stem (word); return word;}/** * Keep cygwin happy. */intmain (void) { return 0;}/** * Stemmer language. */const char *my_stemmer_language = "en";/** * Stemmer functions. */const stemmer_functions my_functions = { .stem_word = porter_stem_word,};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -