tm_cvt.h 543 B

1234567891011121314151617
  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_WALLCLOCK_TM_CVT_H
  6. #define TOR_WALLCLOCK_TM_CVT_H
  7. #include <sys/types.h>
  8. struct tm;
  9. struct tm *tor_localtime_r_msg(const time_t *timep, struct tm *result,
  10. char **err_out);
  11. struct tm *tor_gmtime_r_msg(const time_t *timep, struct tm *result,
  12. char **err_out);
  13. #endif