aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/version.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/version.cpp')
-rw-r--r--src/utils/version.cpp22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/utils/version.cpp b/src/utils/version.cpp
index 3deed3149..d540864b2 100644
--- a/src/utils/version.cpp
+++ b/src/utils/version.cpp
@@ -1,7 +1,9 @@
-/*************************************************
-* Version Information Source File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
+/*
+* Version Information
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
#include <botan/version.h>
#include <botan/parsing.h>
@@ -14,9 +16,9 @@ namespace Botan {
version they are running against.
*/
-/*************************************************
-* Return the version as a string *
-*************************************************/
+/*
+* Return the version as a string
+*/
std::string version_string()
{
return to_string(version_major()) + "." +
@@ -24,9 +26,9 @@ std::string version_string()
to_string(version_patch());
}
-/*************************************************
-* Return parts of the version as integers *
-*************************************************/
+/*
+* Return parts of the version as integers
+*/
u32bit version_major() { return BOTAN_VERSION_MAJOR; }
u32bit version_minor() { return BOTAN_VERSION_MINOR; }
u32bit version_patch() { return BOTAN_VERSION_PATCH; }