blob: bfc431ee27d0a516ce8249f052bd05036dc5ba15 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#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*/