Verify bittorrent .torrent metainfo files.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 3 ans
12345678910111213141516171819
  1. #ifndef UTIL_H
  2. #define UTIL_H
  3. /*
  4. * Convert byte to human readable.
  5. * If binary is non-zero, use 1024 as conversation number, or else
  6. * use 1000.
  7. * precision is the precision, or -1 for the default
  8. * Returns the characters written on success, or -1 on error (like out is too small)
  9. */
  10. int util_byte2human(long int bytes, int binary, int precision, char* out, size_t out_len);
  11. /*
  12. * Convert raw bytes in 'bytes' to hex format into out
  13. * out has to be at least bytes_len * 2 + 1 large
  14. */
  15. void util_byte2hex(const unsigned char* bytes, int bytes_len, int uppercase, char* out);
  16. #endif