summaryrefslogtreecommitdiffstats
path: root/tools/apriori/cmdline.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/apriori/cmdline.h')
-rw-r--r--tools/apriori/cmdline.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/apriori/cmdline.h b/tools/apriori/cmdline.h
new file mode 100644
index 0000000..8f7f394
--- /dev/null
+++ b/tools/apriori/cmdline.h
@@ -0,0 +1,21 @@
+#ifndef CMDLINE_H
+#define CMDLINE_H
+
+void print_help(const char *executable_name);
+
+int get_options(int argc, char **argv,
+ int *start_addr,
+ int *addr_increment,
+ int *locals_only,
+ int *quiet,
+ int *dry_run,
+ char ***dirs,
+ int *num_dirs,
+ char ***defaults,
+ int *num_defaults,
+ int *verbose,
+ char **mapfile,
+ char **output,
+ char **prelinkmap);
+
+#endif/*CMDLINE_H*/