rephist: Introduce a fraction and period for overload onionskin
[tor.git] / src / lib / encoding / qstring.h
blob1a75a7ccc102949516764fea2941c39fa66e861a
1 /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
2 * Copyright (c) 2007-2021, The Tor Project, Inc. */
3 /* See LICENSE for licensing information */
5 /**
6 * \file qstring.h
7 * \brief Header for qstring.c
8 */
10 #ifndef TOR_ENCODING_QSTRING_H
11 #define TOR_ENCODING_QSTRING_H
13 #include <stddef.h>
15 const char *decode_qstring(const char *start, size_t in_len_max,
16 char **out, size_t *out_len);
18 #endif /* !defined(TOR_ENCODING_QSTRING_H) */