Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
FindASPELL
/
Test
/
version.c
blob: da8c0209633a3f81755df6003d2733eee724a207 [
file
] [
log
] [
blame
] [
edit
]
#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
;
}