1 /*
2  * @file    libsc68.c
3  * @brief   sc68 API
4  * @author  http://sourceforge.net/users/benjihan
5  *
6  * Copyright (c) 1998-2015 Benjamin Gerard
7  *
8  * This program is free software: you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation, either version 3 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.
20  *
21  * If not, see <http://www.gnu.org/licenses/>.
22  *
23  */
24 
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28 
29 #include "sc68.h"
30 
31 #ifndef PACKAGE_STRING
32 # define PACKAGE_STRING "libsc68 n/a"
33 #endif
34 
35 #ifndef PACKAGE_VERNUM
36 # define PACKAGE_VERNUM 0
37 #endif
38 
sc68_versionstr(void)39 const char * sc68_versionstr(void)
40 {
41   return PACKAGE_STRING;
42 }
43 
sc68_version(void)44 int sc68_version(void)
45 {
46   return PACKAGE_VERNUM;
47 }
48