blob: bfc431ee27d0a516ce8249f052bd05036dc5ba15 [file] [log] [blame]
The Android Open Source Projectb6c1cf62008-10-21 07:00:00 -07001#ifndef CMDLINE_H
2#define CMDLINE_H
3
4void print_help(void);
5
6int get_options(int argc, char **argv,
7 char **outfile,
8 char **symsfile,
9 int *print_symtab,
10 int *verbose,
11 int *quiet,
12 int *shady,
13 int *dry_run,
14 int *strip_debug);
15
16#endif/*CMDLINE_H*/