Tor 0.4.9.0-alpha-dev
compress_none.h
Go to the documentation of this file.
1/* Copyright (c) 2003, Roger Dingledine
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2021, The Tor Project, Inc. */
4/* See LICENSE for licensing information */
5
6/**
7 * \file compress_none.h
8 * \brief Header for compress_none.c
9 **/
10
11#ifndef TOR_COMPRESS_NONE_H
12#define TOR_COMPRESS_NONE_H
13
15tor_cnone_compress_process(char **out, size_t *out_len,
16 const char **in, size_t *in_len,
17 int finish);
18
19#endif /* !defined(TOR_COMPRESS_NONE_H) */
20
tor_compress_output_t
Definition: compress.h:68
tor_compress_output_t tor_cnone_compress_process(char **out, size_t *out_len, const char **in, size_t *in_len, int finish)
Definition: compress_none.c:38