I think I understand what you're struggling with. I'm going to interpret this question as why are
int *l = (int*)left;
int *r = (int*)right;
these lines necessary.
They're necessary because C is basically assembly. When you use a type in C, you're telling it how large you expect the field to be in terms of memory. The void type is exactly that - a type of totally undefined length. A void pointer is a pointer to a variable of any type. Actually, any pointer can point to any type, but when you dereference it you'll only read up to the size of that type.
Now the type void doesn't have a size. So you can't dereference a void pointer, because C doesn't know "where to stop" when reading the value.
So a good way to think of it is not int* x is a integer pointer but x is a pointer and the data it points to is an int of size 4 bytes (or whatever). By contrast void* y is a pointer and the data it points to is of unknown size and type.
A cast is used so that you know the size of the memory you're supposed to be reading once you've dereferenced your pointer.
See also the explanation from cplusplus.com:
void pointers
The void type of pointer
is a special type of pointer. In C++,
void represents the absence of type,
so void pointers are pointers that
point to a value that has no type (and
thus also an undetermined length and
undetermined dereference properties).
This allows void pointers to point to
any data type, from an integer value
or a float to a string of characters.
But in exchange they have a great
limitation: the data pointed by them
cannot be directly dereferenced (which
is logical, since we have no type to
dereference to), and for that reason
we will always have to cast the
address in the void pointer to some
other pointer type that points to a
concrete data type before
dereferencing it.
How could you fix this? Stop using void*, basically. Your function is called compare_int yet it accepts theoretically any type and attempts to cast it. This is what other commentors / people answering mean when they say "what are you trying to do here?" The void* trick is very useful sometimes (for example when you want to be able to use a callback function pointer and let the programmer pass any arguments. CreateThread on windows works like this) but here, just for comparing two integers? It's overkill.
compare_int. Compare int. Why wouldn't you make its arguments integers? – meagar Apr 5 '11 at 19:41