Decode inline quoted-printable value.
val src : decoder -> Stdlib.Bytes.t -> int -> int -> unitsrc d s j l provides d with l bytes to read, starting at j in s. This byte range is read by calls to decode with d until `Await is returned. To signal the end of input, call the function with l = 0.
decode d is:
`Awaitifdhas a`Manualinput source and awaits for more input. The client must usesrcto provide it.`Endif the end of input was reached.`Malformed bytesif thebytessequence is malformed according to the decoded quoted-printable encoding scheme. If you are interested in a best-effort decoding you can still continue to decode after an error until the decode synchronizes again on valid bytes.`Data dataif adatasequence value was decoded.`Line lineif aline sequence value plus a line-break was decoded.
Note. Repeated invocation always eventually returns `End, even in case of errors.
val decoder_byte_count : decoder -> intdecoder_byte_count d is the number of characters already decoded on d (included malformed ones). This is the last decode's end output offset counting from beginning of the stream.
encode encoder is:
`Partialiffehas a`Manualdestination and needs more output storage. The client must usedstto provide a new buffer and then callencodewith`Awaituntil`Okis returned.`Okwhen the encoder is ready to encode a new`Char,`Line_breakor`End
For `Manual destination, encoding `End always return `Partial, the client should continue as usual with `Await until `Ok is returned at which point dst_rem encoder is guaranteed to be the sode of the last provided buffer (i.e. nothing was written).
Raises. Invalid_argument if a `Char, `Line_break or `End is encoded after a `Partial encode.
val dst : encoder -> Stdlib.Bytes.t -> int -> int -> unit