Sha256: 8719cb9d4c9e6e86969aad81ba409adf425eb9475fcda304c9be746ea59814a1

Contents?: true

Size: 729 Bytes

Versions: 5

Compression:

Stored size: 729 Bytes

Contents

#include <ruby.h>
#include "../compat/ruby.h"

#include "extconf.h"
#include "crc16_xmodem.h"

VALUE Digest_CRC16XModem_update(VALUE self, VALUE data)
{
	VALUE crc_ivar_name = rb_intern("@crc");
	VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name);
	crc16_t crc = NUM2USHORT(crc_ivar);

	const char *data_ptr = StringValuePtr(data);
	size_t length = RSTRING_LEN(data);

	crc = crc16_xmodem_update(crc,data_ptr,length);

	rb_ivar_set(self, crc_ivar_name, USHORT2NUM(crc));
	return self;
}

void Init_crc16_xmodem_ext()
{
	VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest"));
	VALUE cCRC16XModem = rb_const_get(mDigest, rb_intern("CRC16XModem"));

	rb_define_method(cCRC16XModem, "update", Digest_CRC16XModem_update, 1);
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
digest-crc-0.6.3 ext/digest/crc16_xmodem/crc16_xmodem_ext.c
digest-crc-0.6.2 ext/digest/crc16_xmodem/crc16_xmodem_ext.c
digest-crc-0.6.1 ext/digest/crc16_xmodem/crc16_xmodem_ext.c
digest-crc-0.6.0 ext/digest/crc16_xmodem/crc16_xmodem_ext.c
digest-crc-0.6.0.rc1 ext/digest/crc16_xmodem/crc16_xmodem_ext.c