We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug The "help" option is triggered by -help which only uses one dash. Full-word options should use double dashes.
-help
To Reproduce See code
if ((argc != 2) || (strncmp(argv[1], "-help", 100) == 0)) { printf("\ncFE TS CRC calculator: \%s\n", CFE_TS_CRC_VERSION_STRING); printf("\nUsage: cfe_ts_crc [filename]\n"); exit(0); }
Expected behavior Use --help instead
--help
Code snips If applicable, add references to the software.
System observed on: Source code
Additional context None
Reporter Info Gerardo E. Cruz-Ortiz, NASA-GSFC
The text was updated successfully, but these errors were encountered:
Changed full word help option '-help' to '--help' as per issue nasa#19.
3512c4e
Merge pull request #24 from martintc/help_option
590b8e4
Fix #19, Change full word help option '-help' to '--help'
Successfully merging a pull request may close this issue.
Describe the bug
The "help" option is triggered by
-help
which only uses one dash. Full-word options should use double dashes.To Reproduce
See code
Expected behavior
Use
--help
insteadCode snips
If applicable, add references to the software.
System observed on:
Source code
Additional context
None
Reporter Info
Gerardo E. Cruz-Ortiz, NASA-GSFC
The text was updated successfully, but these errors were encountered: