Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 1 | /* |
| 2 | * version.c --- Return the version of the ext2 library |
| 3 | * |
| 4 | * Copyright (C) 1997 Theodore Ts'o. |
| 5 | * |
| 6 | * %Begin-Header% |
Theodore Ts'o | 543547a | 2010-05-17 21:31:56 -0400 | [diff] [blame^] | 7 | * This file may be redistributed under the terms of the GNU Library |
| 8 | * General Public License, version 2. |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 9 | * %End-Header% |
| 10 | */ |
| 11 | |
Theodore Ts'o | 4cbe8af | 1997-08-10 23:07:40 +0000 | [diff] [blame] | 12 | #if HAVE_UNISTD_H |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 13 | #include <unistd.h> |
Theodore Ts'o | 4cbe8af | 1997-08-10 23:07:40 +0000 | [diff] [blame] | 14 | #endif |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 15 | #include <string.h> |
| 16 | #include <stdio.h> |
| 17 | #include <ctype.h> |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 18 | |
Theodore Ts'o | b5abe6f | 1998-01-19 14:47:53 +0000 | [diff] [blame] | 19 | #include "ext2_fs.h" |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 20 | #include "ext2fs.h" |
| 21 | |
| 22 | #include "../../version.h" |
| 23 | |
| 24 | static const char *lib_version = E2FSPROGS_VERSION; |
| 25 | static const char *lib_date = E2FSPROGS_DATE; |
| 26 | |
| 27 | int ext2fs_parse_version_string(const char *ver_string) |
| 28 | { |
| 29 | const char *cp; |
Theodore Ts'o | a2df22f | 2007-07-08 12:37:13 -0400 | [diff] [blame] | 30 | int version = 0, dot_count = 0; |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 31 | |
Theodore Ts'o | 2ecc6fe | 1997-04-29 17:57:00 +0000 | [diff] [blame] | 32 | for (cp = ver_string; *cp; cp++) { |
Theodore Ts'o | a2df22f | 2007-07-08 12:37:13 -0400 | [diff] [blame] | 33 | if (*cp == '.') { |
| 34 | if (dot_count++) |
| 35 | break; |
| 36 | else |
| 37 | continue; |
| 38 | } |
Theodore Ts'o | da83cb6 | 2005-01-06 23:52:45 -0500 | [diff] [blame] | 39 | if (!isdigit(*cp)) |
| 40 | break; |
Theodore Ts'o | 521e368 | 1997-04-29 17:48:10 +0000 | [diff] [blame] | 41 | version = (version * 10) + (*cp - '0'); |
| 42 | } |
| 43 | return version; |
| 44 | } |
| 45 | |
| 46 | |
| 47 | int ext2fs_get_library_version(const char **ver_string, |
| 48 | const char **date_string) |
| 49 | { |
| 50 | if (ver_string) |
| 51 | *ver_string = lib_version; |
| 52 | if (date_string) |
| 53 | *date_string = lib_date; |
| 54 | |
| 55 | return ext2fs_parse_version_string(lib_version); |
| 56 | } |