int vxinflateInit(z)
z_stream *z;
{
     ....
}有这类用法说明的网页链接最好了

解决方案 »

  1.   


    int vxinflateInit(z)
    z_stream *z;
    {
      ....
    }
     
      

  2.   

    http://topic.csdn.net/u/20110816/21/1eb40916-2c52-4dbc-a544-26ab4753cdf9.html
      

  3.   

    http://www.360doc.com/content/11/0504/12/6295074_114263115.shtml
      

  4.   

    这应是C98时函数的写法,google K&R 会看到很多资料。
      

  5.   

    现在这个就是函数了。这是很老的代码才这样写,等价于int vxinflateInit(z_stream *z)
    {
      ....
    }