blob: a22b4143ab777ba67435d7306ce662bf99c54bf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
const char *crystfel_version_string()
{
return "${CRYSTFEL_VERSION}";
}
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.";
}
|