Lzo.uncompress

Uncompresses src data. dst must have at least the length of the uncompressed data, which must be memorized at compression time.

Note: dst overflow checking is NOT done!

class Lzo
size_t
uncompress
(
in void[] src
,
void[] dst
)

Parameters

src void[]

data to uncompress

dst void[]

uncompressed data destination buffer

Return Value

Type: size_t

length of uncompressed data in dst

Throws

CompressionException on error

Meta