Aegisub/cmake/hunspell_string_api.cpp
2019-09-08 00:29:41 -04:00

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;
}