summaryrefslogtreecommitdiffstats
path: root/tools/apriori/cmdline.h
blob: 8f7f394be7886f4f15a85974c6682ea4bb88a37d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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*/