Hello,

I am supposed to implement memory regions like this:
https://en.wikipedia.org/wiki/Region...ory_management

We are using a table that store the memory region name and a pointer to it's location to index to the memory region.
Before doing this I just want to make sure I am using the right pointer.
If we want to point to a string we use char *, to an int we use int* etc.
Therefore if we want to point to memory region should the pointers be of type void*? The type malloc returns.
So my table would handle void pointers?

Thanks