Added comments.
This commit is contained in:
parent
2629c12f1a
commit
4390fca3ef
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
|
|
||||||
#define VERSION "v0.6"
|
#define VERSION "v1.0"
|
||||||
|
|
||||||
static bool run;
|
static bool run;
|
||||||
|
|
||||||
@ -15,12 +15,14 @@ void printUsage(char *progName);
|
|||||||
void leave();
|
void leave();
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
|
// Variables for argument parsing
|
||||||
bool f_help = false,
|
bool f_help = false,
|
||||||
f_version = false,
|
f_version = false,
|
||||||
f_quiet = false;
|
f_quiet = false;
|
||||||
int base = 10;
|
int base = 10;
|
||||||
char *file = NULL;
|
char *file = NULL;
|
||||||
|
|
||||||
|
// Parse commandline arguments
|
||||||
int c;
|
int c;
|
||||||
while((c = getopt(argc, argv, "hvqb:f:")) != -1) {
|
while((c = getopt(argc, argv, "hvqb:f:")) != -1) {
|
||||||
switch(c) {
|
switch(c) {
|
||||||
@ -51,6 +53,7 @@ int main(int argc, char *argv[]) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Act based on which flags were used
|
||||||
if(f_help) {
|
if(f_help) {
|
||||||
printUsage(argv[0]);
|
printUsage(argv[0]);
|
||||||
puts(" -h print this help information");
|
puts(" -h print this help information");
|
||||||
|
Loading…
Reference in New Issue
Block a user