Sha256: 497e120f980f63d021bcc9efd39781238f1cbdcb1fc949fb25c16b7456202e8b
Contents?: true
Size: 730 Bytes
Versions: 1
Compression:
Stored size: 730 Bytes
Contents
#include "ruby.h" #include "extconf.h" #include "crc32_bzip2.h" VALUE Digest_CRC32Bzip2_update(VALUE self, VALUE data) { VALUE crc_ivar_name = rb_intern("@crc"); VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name); crc32_t crc = NUM2UINT(crc_ivar); const char *data_ptr = StringValuePtr(data); size_t length = RSTRING_LEN(data); crc = crc32_bzip2_update(crc,data_ptr,length); rb_ivar_set(self, crc_ivar_name, UINT2NUM(crc)); return self; } void Init_crc32_bzip2_ext() { VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest")); VALUE cCRC32Bzip2 = rb_const_get(mDigest, rb_intern("CRC32BZip2")); rb_undef_method(cCRC32Bzip2, "update"); rb_define_method(cCRC32Bzip2, "update", Digest_CRC32Bzip2_update, 1); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
digest-crc-0.6.4 | ext/digest/crc32_bzip2/crc32_bzip2_ext.c |