addsub.h 451 B

12345678910111213141516171819
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2019, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file addsub.h
  7. *
  8. * \brief Header for addsub.c
  9. **/
  10. #ifndef TOR_INTMATH_ADDSUB_H
  11. #define TOR_INTMATH_ADDSUB_H
  12. #include "lib/cc/torint.h"
  13. uint32_t tor_add_u32_nowrap(uint32_t a, uint32_t b);
  14. #endif /* !defined(TOR_INTMATH_MULDIV_H) */