muldiv.h 845 B

12345678910111213141516171819202122
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. #ifndef TOR_INTMATH_MULDIV_H
  6. #define TOR_INTMATH_MULDIV_H
  7. #include "lib/cc/torint.h"
  8. unsigned round_to_next_multiple_of(unsigned number, unsigned divisor);
  9. uint32_t round_uint32_to_next_multiple_of(uint32_t number, uint32_t divisor);
  10. uint64_t round_uint64_to_next_multiple_of(uint64_t number, uint64_t divisor);
  11. void simplify_fraction64(uint64_t *numer, uint64_t *denom);
  12. /* Compute the CEIL of <b>a</b> divided by <b>b</b>, for nonnegative <b>a</b>
  13. * and positive <b>b</b>. Works on integer types only. Not defined if a+(b-1)
  14. * can overflow. */
  15. #define CEIL_DIV(a,b) (((a)+((b)-1))/(b))
  16. #endif /* !defined(TOR_INTMATH_MULDIV_H) */