diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-11-01 20:43:43 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-11-01 20:43:43 (GMT) |
commit | de3bba16d3fa1c209a76f314fb7a9cb38ba6f9a0 (patch) | |
tree | 024c9c2defe56354cdf3c08e3118d809f2154f0d /tools/h5jam/h5jam.c | |
parent | 1f3aede7c7adb1a12efb839a15c8cf3a1bce8f1c (diff) | |
download | hdf5-de3bba16d3fa1c209a76f314fb7a9cb38ba6f9a0.zip hdf5-de3bba16d3fa1c209a76f314fb7a9cb38ba6f9a0.tar.gz hdf5-de3bba16d3fa1c209a76f314fb7a9cb38ba6f9a0.tar.bz2 |
[svn-r14231] new feature: add a -V version option to h5jam
tested: windows, linux
Diffstat (limited to 'tools/h5jam/h5jam.c')
-rw-r--r-- | tools/h5jam/h5jam.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/h5jam/h5jam.c b/tools/h5jam/h5jam.c index 120cde4..d9d16f0 100644 --- a/tools/h5jam/h5jam.c +++ b/tools/h5jam/h5jam.c @@ -130,6 +130,9 @@ parse_command_line (int argc, const char *argv[]) case 'h': usage (progname); exit (EXIT_SUCCESS); + case 'V': + print_version (progname); + exit (EXIT_SUCCESS); case '?': default: usage (progname); |