Standardize on the vi editing directives being on the first line.
[oweals/busybox.git] / e2fsprogs / ext2fs / version.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * version.c --- Return the version of the ext2 library
4  *
5  * Copyright (C) 1997 Theodore Ts'o.
6  *
7  * %Begin-Header%
8  * This file may be redistributed under the terms of the GNU Public
9  * License.
10  * %End-Header%
11  */
12
13 #if HAVE_UNISTD_H
14 #include <unistd.h>
15 #endif
16 #include <string.h>
17 #include <stdio.h>
18 #include <ctype.h>
19
20 #include "ext2_fs.h"
21 #include "ext2fs.h"
22
23 //#include "../../version.h"
24
25 static const char *lib_version = E2FSPROGS_VERSION;
26 static const char *lib_date = E2FSPROGS_DATE;
27
28 int ext2fs_parse_version_string(const char *ver_string)
29 {
30         const char *cp;
31         int version = 0;
32
33         for (cp = ver_string; *cp; cp++) {
34                 if (*cp == '.')
35                         continue;
36                 if (!isdigit(*cp))
37                         break;
38                 version = (version * 10) + (*cp - '0');
39         }
40         return version;
41 }
42
43
44 int ext2fs_get_library_version(const char **ver_string,
45                                const char **date_string)
46 {
47         if (ver_string)
48                 *ver_string = lib_version;
49         if (date_string)
50                 *date_string = lib_date;
51
52         return ext2fs_parse_version_string(lib_version);
53 }