diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-04-10 19:23:34 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-04-10 19:23:34 +0100 |
commit | ebf8364065f80a0b51ba5ed46b182f78c30c8f84 (patch) | |
tree | 92315bc1a45f64736a6dfb0836bdfac69e6bba26 /src/casm.c | |
parent | 079815717a89fd1015bc504ae1da2dc62c925480 (diff) |
Updated usage with version ready for tagging.
Diffstat (limited to 'src/casm.c')
-rw-r--r-- | src/casm.c | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -52,6 +52,20 @@ */ +/* ---------------------------------------- VERSION INFO +*/ + +static const char *casm_usage = +"Version 1.0\n" +"\n" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License (Version 3) for more details.\n" +"\n" +"usage: casm file\n"; + + /* ---------------------------------------- TYPES */ @@ -519,7 +533,7 @@ int main(int argc, char *argv[]) if (!argv[1]) { - fprintf(stderr,"usage: casm file\n"); + fprintf(stderr,"%s\n", casm_usage); exit(EXIT_FAILURE); } |