zlib_version()
public
Returns the string which represents the version of zlib library.
Show source
/*
* Returns the string which represents the version of zlib library.
*/
static VALUE
rb_zlib_version(klass)
VALUE klass;
{
VALUE str;
str = rb_str_new2(zlibVersion());
OBJ_TAINT(str); /* for safe */
return str;
}