I want to implement deflate decompression on data in C. I have a pointer to the data and compressed data length.
On going through the zlib documentation, I see all function declarations have 'OF' in between the function name and arguments list.
eg.
ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
...
Can someone explain what this is? And also suggest links on working of zlib library in c