Method: Zlib::Inflate#sync_point?
- Defined in:
- ext/zlib/zlib.c
#sync_point? ⇒ Boolean
Quoted verbatim from original documentation:
What is this?
:)
2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 |
# File 'ext/zlib/zlib.c', line 2323
static VALUE
rb_inflate_sync_point_p(VALUE obj)
{
struct zstream *z = get_zstream(obj);
int err;
err = inflateSyncPoint(&z->stream);
if (err == 1) {
return Qtrue;
}
if (err != Z_OK) {
raise_zlib_error(err, z->stream.msg);
}
return Qfalse;
}
|