Ignore:
Timestamp:
2008-08-28T11:03:09+12:00 (16 years ago)
Author:
oranfry
Message:

making --help an alias for -help

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/wirk3/src/wirk3.cpp

    r17045 r17048  
    7474        a = argv[i];
    7575           
    76         if ( a.compare("-help") == 0 ) {
     76        if ( a.compare("-help") == 0 || a.compare("--help") == 0 ) {
    7777            show_help();
    7878            return 0;
    79         } else if ( a.compare("-cp") == 0) {
     79        } else if ( a.compare("-cp") == 0 || a.compare("--cp") == 0 ) {
    8080            cout << classpath;
    8181            return 0;
Note: See TracChangeset for help on using the changeset viewer.