1
0
Fork 0
Aegisub/cmake/hunspell_string_api.cpp

11 lines
197 B
C++

#include <hunspell/hunspell.hxx>
#include <string>
int main() {
Hunspell hunspell(NULL, NULL);
std::string word = "";
hunspell.suggest(word);
hunspell.spell(word);
return 0;
}