Function
Camelquoted_decode_step
Declaration [src]
gsize
camel_quoted_decode_step (
guchar* in,
gsize len,
guchar* out,
gint* savestate,
gint* saveme
)
Description [src]
Decodes a block of quoted-printable encoded data. Performs a ‘decode step’ on a chunk of QP encoded data.
Parameters
in-
Type: An array of
gucharInput stream.
The length of the array is specified in the lenargument.The data is owned by the caller of the function. len-
Type:
gsizeMax length of data to decode.
out-
Type: An array of
gucharOutput stream.
The argument will be modified by the function. The caller of the function takes ownership of the returned data, and is responsible for freeing it. savestate-
Type:
gint*Holds the number of bits that are stored in
saveme.The argument will be modified by the function. saveme-
Type: An array of
gintLeftover bits that have not yet been decoded.
The argument will be modified by the function. The length of the array is specified in the savestateargument.The caller of the function takes ownership of the returned data, and is responsible for freeing it.