1 /*
2  * fstrcmp - fuzzy string compare library
3  * Copyright (C) 2009 Peter Miller
4  * Written by Peter Miller <pmiller@opensource.org.au>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or (at
9  * your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program. If not, see <http://www.gnu.org/licenses/>.
18  *
19  *
20  * See the comment attached to the symlink_exceptions field o the project
21  * config file for how the version stamp is maintained separarely for
22  * each development directory and integration directory.
23  */
24 
25 #include <lib/version.h>
26 #include <lib/patchlevel.h>
27 
28 
29 const char *
fstrcmp_version(void)30 fstrcmp_version(void)
31 {
32     return PATCHLEVEL;
33 }
34 
35 
36 const char *
fstrcmp_copyright_years(void)37 fstrcmp_copyright_years(void)
38 {
39     return COPYRIGHT_YEARS;
40 }
41