up vote 1 down vote favorite
share [g+] share [fb]

Can I uncompress a bytestream that was compressed using the .NET GZipStream using the zlib library in C++?

link|improve this question
1  
It outputs standard .gz format. – Mehrdad Afshari Aug 14 '09 at 19:46
feedback

1 Answer

up vote 4 down vote accepted

You should be able to - use gzopen etc.

(The .NET GZipStream certainly should be writing "standard" gzip data, and zlib supports gzip, so...)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown