Code

Updated copyright year to 2010.
[template.git] / src / foobar.c
1 /*
2  * foobar - src/foobar.c
3  * Copyright (C) 2010 Sebastian Harl <sh@tokkee.org>
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  */
19 /*
20  * A short description of this module...
21  */
23 #include "foobar.h"
24 #include "fb_features.h"
26 /*
27  * public API
28  */
30 unsigned int
31 fb_version(void)
32 {
33         return FB_VERSION;
34 } /* fb_version */
36 const char *
37 fb_version_string(void)
38 {
39         return FB_VERSION_STRING;
40 } /* fb_version_string */
42 const char *
43 fb_version_extra(void)
44 {
45         return FB_VERSION_EXTRA;
46 } /* fb_version_extra */
48 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */