Method: Zlib.zlib_version
- Defined in:
- zlib.c
.zlib_version ⇒ Object
Returns the string which represents the version of zlib library.
379 380 381 382 383 |
# File 'zlib.c', line 379 static VALUE rb_zlib_version(VALUE klass) { return rb_str_new2(zlibVersion()); } |