di_ops.h 911 B

12345678910111213141516171819202122232425262728293031
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2012, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file di_ops.h
  7. * \brief Headers for di_ops.c
  8. **/
  9. #ifndef TOR_DI_OPS_H
  10. #define TOR_DI_OPS_H
  11. #include "orconfig.h"
  12. #include "torint.h"
  13. int tor_memcmp(const void *a, const void *b, size_t sz);
  14. int tor_memeq(const void *a, const void *b, size_t sz);
  15. #define tor_memneq(a,b,sz) (!tor_memeq((a),(b),(sz)))
  16. /** Alias for the platform's memcmp() function. This function is
  17. * <em>not</em> data-independent: we define this alias so that we can
  18. * mark cases where we are deliberately using a data-dependent memcmp()
  19. * implementation.
  20. */
  21. #define fast_memcmp(a,b,c) (memcmp((a),(b),(c)))
  22. #define fast_memeq(a,b,c) (0==memcmp((a),(b),(c)))
  23. #define fast_memneq(a,b,c) (0!=memcmp((a),(b),(c)))
  24. #endif