compress_none.h (552B)
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 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); 18 19 #endif /* !defined(TOR_COMPRESS_NONE_H) */