view test/test_shift.h @ 38:fd42f9b1b95e

docs: update copyright for 2025, update the README with more info I slightly edited vec.h however to use calloc directly rather than malloc + memset.
author Paper <paper@tflc.us>
date Sat, 26 Apr 2025 02:54:44 -0400
parents 4b5a557aa64f
children
line wrap: on
line source

static int test_shift(void)
{
	int ret = 0;

	ret |= (vec_urshift(0xFFFFFFFF, 16) != 0xFFFF);
	ret |= (vec_ulshift(0xFFFF, 16) != 0xFFFF0000);
	ret |= (vec_rshift(-0xFFFF, 8) != -0x100);
	ret |= (vec_lshift(-0xFFFF, 8) != -0xFFFF00);

	return ret;
}