typedef struct data * Data;
I have something like this that I don't understand. I have some function later on that returns Data. What I don't get is, data * Data seems to me like a "empty" struct .. It doesn't have anything in it.
So what do I create when I do something like Data d;
and what do I returns from function if this struct is empty?
Thank you.