mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
13 lines
562 B
C
13 lines
562 B
C
int PSYC_renderHeader(struct PSYC_Buffers* pbuf,
|
|
const uint8_t* name, const size_t nlength,
|
|
const uint8_t* value, const size_t vlength,
|
|
const uchar flags, const uchar modifier);
|
|
|
|
int PSYC_renderBody(struct PSYC_Buffers* pbuf,
|
|
const uint8_t* method, const size_t mlength,
|
|
const uint8_t* data, const size_t dlength,
|
|
const uchar flags);
|
|
|
|
int PSYC_doneRender(struct PSYC_Buffers* pbuf,
|
|
uint8_t** buf, size_t* written);
|
|
|