8 lines
106 B
C++
8 lines
106 B
C++
#ifndef __STEM_H
|
|
#define __STEM_H
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
string stem(string str);
|
|
|
|
#endif |