summaryrefslogtreecommitdiff
path: root/src/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.c')
-rw-r--r--src/options.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/options.c b/src/options.c
index 014a1f2..82b12bc 100644
--- a/src/options.c
+++ b/src/options.c
@@ -34,6 +34,8 @@ void parseOptions(CLIOpts *opts, int argc, char **argv)
{"print-header", 0, 0, 10001},
{"print-segments", 0, 0, 10002},
{"print-sections", 0, 0, 10003},
+ {"copy", 0, 0, 10004},
+ {"model", 0, 0, 10005},
{NULL, 0, NULL, 0}
};
@@ -55,6 +57,12 @@ void parseOptions(CLIOpts *opts, int argc, char **argv)
case 10003:
opts->printSections = 1;
break;
+ case 10004:
+ opts->copy = 1;
+ break;
+ case 10005:
+ opts->model = 1;
+ break;
case '?':
default:
goto USAGE;