mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
70f031528d
Signed-off-by: David Goulet <dgoulet@torproject.org>
16 lines
314 B
C
16 lines
314 B
C
/* Copyright (c) 2020, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
/**
|
|
* \file trace.h
|
|
* \brief Header for trace.c
|
|
**/
|
|
|
|
#ifndef TOR_LIB_TRACE_TRACE_H
|
|
#define TOR_LIB_TRACE_TRACE_H
|
|
|
|
void tor_trace_init(void);
|
|
void tor_trace_free_all(void);
|
|
|
|
#endif /* !defined(TOR_LIB_TRACE_TRACE_H) */
|