tvdiff.h 488 B

12345678910111213141516
  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_TVDIFF_H
  6. #define TOR_TVDIFF_H
  7. #include "lib/cc/torint.h"
  8. struct timeval;
  9. long tv_udiff(const struct timeval *start, const struct timeval *end);
  10. long tv_mdiff(const struct timeval *start, const struct timeval *end);
  11. int64_t tv_to_msec(const struct timeval *tv);
  12. #endif