diff options
| author | jakob <jakob@memeware.net> | 2017-04-09 19:39:46 -0400 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-04-09 19:39:46 -0400 |
| commit | 411a40b5c077ca69e34c7016428eb9d856f8fe73 (patch) | |
| tree | cff2ee6b0f6e4144a0041c53adfc8c542088781c /src/cli.h | |
| parent | 8a1fcff16e9ba8674c72011da7da5ad1bc133168 (diff) | |
Automated style checking and fixed unit tests.
Diffstat (limited to 'src/cli.h')
| -rw-r--r-- | src/cli.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -33,12 +33,12 @@ enum { /* Structure for storing options set from the command-line. */ struct params { - int mode; /* Current mode of operation. */ - int game; /* Which encryption keys to use. */ - bool verbose; /* Whether or not to output progress messages. */ - int vararg_index; /* Start index of paths in argv. */ - char *out; /* Path to extract files to. */ - size_t out_len; /* Length of the output path string. */ + bool verbose; /* Whether or not to output progress messages. */ + char *out; /* Path to extract files to. */ + size_t out_len; /* Length of the output path string. */ + int mode; /* Current mode of operation. */ + int game; /* Which encryption keys to use. */ + int vararg_index; /* Start index of paths in argv. */ }; /* Returns a params structure parsed from `argv`. */ |