Tor  0.4.7.0-alpha-dev
qstring.h
Go to the documentation of this file.
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) */
const char * decode_qstring(const char *start, size_t in_len_max, char **out, size_t *out_len)
Definition: qstring.c:64