adding the bit of tomfoolery which looks at the raw byte code of functions

cat-town
Dan Buch 13 years ago
parent 032fd49d5d
commit aab442042b

@ -80,6 +80,13 @@ void test_sorting(int *numbers, int count, compare_cb cmp)
printf("\n");
free(sorted);
unsigned char *data = (unsigned char *)cmp;
for(i = 0; i < 25; i++) {
printf("%0x:", data[i]);
}
printf("\n");
}

Loading…
Cancel
Save