In gcc one can use the function "mallinfo()" in order to know, among other things, the amount of dynamic storage currently allocated by the program through "malloc()". I use it to check for program memory leaks.
I would like to know whether there is anything similar for gpc?
-- Tomasz Kowaltowski