Method: Zstdlib.zlib_version

Defined in:
ext/zstdlib_c/ruby/zlib-3.3/zstdlib.c

.zlib_versionObject

Returns the string which represents the version of zlib library.



393
394
395
396
397
# File 'ext/zstdlib_c/ruby/zlib-3.3/zstdlib.c', line 393

static VALUE
rb_zlib_version(VALUE klass)
{
    return rb_str_new2(zlibVersion());
}