KyleCool1
KyleCool1

Reputation: 13

LZMA Decompression with Objective C

How do I decompress lzma files with objective c? I have the information on decompressing the files, such as header size, but I don't know how to do the process.

Upvotes: 0

Views: 402

Answers (1)

Ben Baron
Ben Baron

Reputation: 14815

You'll need to use an lzma decompression library such as this one: http://7-zip.org/sdk.html

That one is available in C, so you can use it directly in your Objective-C application.

Upvotes: 1

Related Questions