| The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | #ifndef CMDLINE_H |
| 2 | #define CMDLINE_H | ||||
| 3 | |||||
| 4 | void print_help(const char *executable_name); | ||||
| 5 | |||||
| 6 | int get_options(int argc, char **argv, | ||||
| 7 | int *start_addr, | ||||
| 8 | int *addr_increment, | ||||
| 9 | int *locals_only, | ||||
| 10 | int *quiet, | ||||
| 11 | int *dry_run, | ||||
| 12 | char ***dirs, | ||||
| 13 | int *num_dirs, | ||||
| 14 | char ***defaults, | ||||
| 15 | int *num_defaults, | ||||
| 16 | int *verbose, | ||||
| 17 | char **mapfile, | ||||
| 18 | char **output, | ||||
| 19 | char **prelinkmap); | ||||
| 20 | |||||
| 21 | #endif/*CMDLINE_H*/ | ||||