tor/src/lib/encoding/qstring.h
Nick Mathewson ba05324242 Move and rename decode_escaped_string()
This function decodes something different from the usual c-escaped
format.

It is only used in controller authorization.
2019-04-25 14:13:03 -04:00

19 lines
433 B
C

/* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
* Copyright (c) 2007-2019, 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