typedef struct person *person_t;
In this case, what is person_t exactly? is it a pointer to person or person? In C++, if I were to declare a ptr to an object, I would do:
person* p;
In this case, does it mean I can just write:
person_t p?
Thanks.