我想在我的C程序中使用hunspell。我在Unix环境(shell)中工作,它已经内置了hunspell。 我知道我可以通过打字来使用 hunspell文件名 在命令行,但我想知道如何在我的程序中使用它。最终我想存储每个字典单词,但首先我只想知道如何将它导入我的程序。 就像是#include类型的东西?
答案 0 :(得分:1)
是的,您可以通过#include <hunspell/hunspell.h>
使用hunspell API。可以在hunspell documentation page(hunspell3.pdf)找到API详细信息。示例有点稀缺,但this或this应该让您开始。