mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-03 07:12:28 +00:00
-help and -version
git-svn-id: svn+q:///qpdf/trunk@643 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
parent
07dc592182
commit
caad089789
@ -1,3 +1,8 @@
|
|||||||
|
2008-12-11 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
|
* qpdf/qpdf.cc (main): Accept -help and -version as well as --help
|
||||||
|
and --version
|
||||||
|
|
||||||
2008-11-23 Jay Berkenbilt <ejb@ql.org>
|
2008-11-23 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
* Include stdio.h in a few files for proper compilation with (yet
|
* Include stdio.h in a few files for proper compilation with (yet
|
||||||
|
@ -436,7 +436,9 @@ int main(int argc, char* argv[])
|
|||||||
whoami += 3;
|
whoami += 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((argc == 2) && (strcmp(argv[1], "--version") == 0))
|
if ((argc == 2) &&
|
||||||
|
((strcmp(argv[1], "--version") == 0) ||
|
||||||
|
(strcmp(argv[1], "-version") == 0)))
|
||||||
{
|
{
|
||||||
// make_dist looks for the line of code here that actually
|
// make_dist looks for the line of code here that actually
|
||||||
// prints the version number, so read make_dist if you change
|
// prints the version number, so read make_dist if you change
|
||||||
@ -459,7 +461,9 @@ int main(int argc, char* argv[])
|
|||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((argc == 2) && (strcmp(argv[1], "--help") == 0))
|
if ((argc == 2) &&
|
||||||
|
((strcmp(argv[1], "--help") == 0) ||
|
||||||
|
(strcmp(argv[1], "-help") == 0)))
|
||||||
{
|
{
|
||||||
std::cout << help;
|
std::cout << help;
|
||||||
exit(0);
|
exit(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user