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

This commit is contained in:
Dan Buch 2011-10-23 23:07:53 -04:00
parent 032fd49d5d
commit aab442042b

7
ex18.c
View File

@ -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");
}