/*1This file is part of t8code.2t8code is a C library to manage a collection (a forest) of multiple3connected adaptive space-trees of general element classes in parallel.45Copyright (C) 2015 the developers67t8code is free software; you can redistribute it and/or modify8it under the terms of the GNU General Public License as published by9the Free Software Foundation; either version 2 of the License, or10(at your option) any later version.1112t8code is distributed in the hope that it will be useful,13but WITHOUT ANY WARRANTY; without even the implied warranty of14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15GNU General Public License for more details.1617You should have received a copy of the GNU General Public License18along with t8code; if not, write to the Free Software Foundation, Inc.,1951 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.20*/2122/** \file t8_version.c23* Implements functions declared in \ref t8_version.h.24*/2526#include <t8_version.h>2728const char *29t8_get_package_string ()30{31return T8_PACKAGE_STRING;32}3334const char *35t8_get_version_point_string ()36{37return T8_VERSION_POINT_STRING;38}3940const char *41t8_get_version_number ()42{43return T8_VERSION;44}4546int47t8_get_version_major ()48{49return T8_VERSION_MAJOR;50}5152int53t8_get_version_minor ()54{55return T8_VERSION_MINOR;56}5758int59t8_get_version_patch ()60{61return T8_VERSION_PATCH;62}636465