/* 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 // TOR_COMPRESS_NONE_H.