Verify bittorrent .torrent metainfo files.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

17 рядки
273B

  1. #ifndef SHOWINFO_H
  2. #define SHOWINFO_H
  3. #include "metainfo.h"
  4. /*
  5. * Print the contents of a metainfo file
  6. */
  7. void showinfo(metainfo_t* m);
  8. /*
  9. * Print the selected info from the metainfo file
  10. * to be readable by a script
  11. */
  12. void showinfo_script(metainfo_t* m);
  13. #endif