tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

qstring.h (472B)


      1 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
      2 * Copyright (c) 2007-2021, The Tor Project, Inc. */
      3 /* See LICENSE for licensing information */
      4 
      5 /**
      6 * \file qstring.h
      7 * \brief Header for qstring.c
      8 */
      9 
     10 #ifndef TOR_ENCODING_QSTRING_H
     11 #define TOR_ENCODING_QSTRING_H
     12 
     13 #include <stddef.h>
     14 
     15 const char *decode_qstring(const char *start, size_t in_len_max,
     16                           char **out, size_t *out_len);
     17 
     18 #endif /* !defined(TOR_ENCODING_QSTRING_H) */