📄 stem.h
字号:
/******************************* stem.h *********************************** Purpose: Header file for an implementation of the Porter stemming algorithm. Notes: This module implemnts a fast stemming function whose results are about as good as any other.**/#ifndef STEM_H#define STEM_H/******************************************************************************//**************************** Public Routines *****************************/#ifdef __STDC__extern int Stem( char *word ); /* returns 1 on success, 0 otherwise */#elseextern int Stem();#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -