Method: Zlib.crc32
- Defined in:
- zlib.c
.crc32(*args) ⇒ Object
call-seq: Zlib.crc32(string, crc)
Calculates CRC checksum for string
, and returns updated value of crc
. If string
is omitted, it returns the CRC initial value. If crc
is omitted, it assumes that the initial value is given to crc
. If string
is an IO instance, reads from the IO until the IO returns nil and returns CRC checksum of all read data.
FIXME: expression.
506 507 508 509 510 |
# File 'zlib.c', line 506
static VALUE
rb_zlib_crc32(int argc, VALUE *argv, VALUE klass)
{
return do_checksum(argc, argv, crc32);
}
|