Home | History | Annotate | Download | only in soslim
      1 #ifndef CMDLINE_H
      2 #define CMDLINE_H
      3 
      4 void print_help(void);
      5 
      6 int 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*/
     17