mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 18:30:55 -05:00
Merge commit 'b3392d84da5bf2162baf937c77e0557f3fd8a52b' into zstd_1.5.2 full changelog: https://github.com/facebook/zstd/compare/v1.4.8...v1.5.2 Updated sys/kern/subr_compressor.c to new API MFC after: 3 days Relnotes: yes Sponsored by: Klara, Inc.
24 lines
595 B
C
24 lines
595 B
C
/*
|
|
* Copyright (c) Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under both the BSD-style license (found in the
|
|
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
* in the COPYING file in the root directory of this source tree).
|
|
* You may select, at your option, one of the above-listed licenses.
|
|
*/
|
|
|
|
#ifndef ZSTDCLI_TRACE_H
|
|
#define ZSTDCLI_TRACE_H
|
|
|
|
/**
|
|
* Enable tracing - log to filename.
|
|
*/
|
|
void TRACE_enable(char const* filename);
|
|
|
|
/**
|
|
* Shut down the tracing library.
|
|
*/
|
|
void TRACE_finish(void);
|
|
|
|
#endif /* ZSTDCLI_TRACE_H */
|