blob: bf2fddeee35b487e253c7bf97bc97e2ca6c77a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
const char *crystfel_version_string()
{
return "@VCS_TAG@";
}
const char *crystfel_licence_string()
{
return "License GPLv3+: GNU GPL version 3 or later" \
" <http://gnu.org/licenses/gpl.html>.\n" \
"This is free software: you are free to change and redistribute it.\n" \
"There is NO WARRANTY, to the extent permitted by law.\n\n" \
"Written by Thomas White and others.";
}
|