mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
21 lines
552 B
C
21 lines
552 B
C
/* Copyright (c) 2003, Roger Dingledine
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
* Copyright (c) 2007-2017, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
/**
|
|
* \file compress_none.h
|
|
* \brief Header for compress_none.c
|
|
**/
|
|
|
|
#ifndef TOR_COMPRESS_NONE_H
|
|
#define TOR_COMPRESS_NONE_H
|
|
|
|
tor_compress_output_t
|
|
tor_cnone_compress_process(char **out, size_t *out_len,
|
|
const char **in, size_t *in_len,
|
|
int finish);
|
|
|
|
#endif /* !defined(TOR_COMPRESS_NONE_H) */
|
|
|