Merge branch 'maint-0.4.5' into maint-0.4.6
[tor.git] / src / lib / compress / compress_none.h
blob90b27ff58fe167ff2c640b1f489c3b742e467686
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 */
6 /**
7 * \file compress_none.h
8 * \brief Header for compress_none.c
9 **/
11 #ifndef TOR_COMPRESS_NONE_H
12 #define TOR_COMPRESS_NONE_H
14 tor_compress_output_t
15 tor_cnone_compress_process(char **out, size_t *out_len,
16 const char **in, size_t *in_len,
17 int finish);
19 #endif /* !defined(TOR_COMPRESS_NONE_H) */