Name: Anonymous 2013-06-27 18:20
I want to declare a const pointer that points to a list of const pointers that point to const data. Throw me a fucking bone.
void *name; means precisely "by dereferencing the id name i'm getting a value of type void", which in turn simply means "name is a pointer to void".