qstring.h 472 B

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