Verify bittorrent .torrent metainfo files.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
287B

  1. #ifndef OPTS_H
  2. #define OPTS_H
  3. extern int opt_silent;
  4. extern int opt_showinfo;
  5. extern int opt_help;
  6. extern int opt_no_use_dir;
  7. extern int opt_pretty_progress;
  8. extern char* opt_data_path;
  9. /* Parse the given arguments. Return -1 if error */
  10. int opts_parse(int argc, char** argv);
  11. #endif