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