2008-05-13 12:52:58 +00:00
|
|
|
/*
|
2011-01-19 13:48:47 +00:00
|
|
|
* This file Copyright (C) Mnemosyne LLC
|
2008-05-13 12:52:58 +00:00
|
|
|
*
|
2010-12-27 19:18:17 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
2008-05-13 12:52:58 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2008-09-23 19:11:04 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2008-05-13 12:52:58 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
2008-05-28 17:17:12 +00:00
|
|
|
* $Id$
|
2008-05-13 12:52:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TR_JSON_H
|
|
|
|
|
2009-03-23 00:08:34 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-05-29 19:17:12 +00:00
|
|
|
/** @ingroup tr_benc */
|
2010-12-27 19:18:17 +00:00
|
|
|
int tr_jsonParse( const char * source, /* Such as a filename. Only when logging an error */
|
2009-06-01 18:57:37 +00:00
|
|
|
const void * vbuf,
|
2008-09-23 19:11:04 +00:00
|
|
|
size_t len,
|
|
|
|
struct tr_benc * setme_benc,
|
|
|
|
const uint8_t ** setme_end );
|
2008-05-13 12:52:58 +00:00
|
|
|
|
2009-03-23 00:08:34 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-05-13 12:52:58 +00:00
|
|
|
#endif
|