blob: da8c0209633a3f81755df6003d2733eee724a207 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <aspell.h>
#include <assert.h>
#include <string.h>
int main(void)
{
char const* aspell_version = aspell_version_string();
assert(strcmp(aspell_version, CMAKE_EXPECTED_ASPELL_VERSION) == 0);
return 0;
}
|