Update copyrights to 2021, using "make update-copyright"
[tor.git] / src / lib / intmath / muldiv.h
blobd1c7b9828dfe2facd6b485d1aa66c3cded99ff47
1 /* Copyright (c) 2003-2004, Roger Dingledine
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2021, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
6 /**
7 * \file muldiv.h
9 * \brief Header for muldiv.c
10 **/
12 #ifndef TOR_INTMATH_MULDIV_H
13 #define TOR_INTMATH_MULDIV_H
15 #include "lib/cc/torint.h"
17 unsigned round_to_next_multiple_of(unsigned number, unsigned divisor);
18 uint32_t round_uint32_to_next_multiple_of(uint32_t number, uint32_t divisor);
19 uint64_t round_uint64_to_next_multiple_of(uint64_t number, uint64_t divisor);
21 uint64_t tor_mul_u64_nowrap(uint64_t a, uint64_t b);
23 void simplify_fraction64(uint64_t *numer, uint64_t *denom);
25 /* Compute the CEIL of <b>a</b> divided by <b>b</b>, for nonnegative <b>a</b>
26 * and positive <b>b</b>. Works on integer types only. Not defined if a+(b-1)
27 * can overflow. */
28 #define CEIL_DIV(a,b) (((a)+((b)-1))/(b))
30 #endif /* !defined(TOR_INTMATH_MULDIV_H) */