When I\'m trying to use and access the pointers to my structs i keep getting the annoying message of \"dereferencing pointer to incomplete type\" ....
For e
If you want to hide the definition of a structure (by sticking the actual struct { block in a single C file and only exposing a typedefed name in the header, you cannot expect to access the fields directly.
One way around this is to continue with the encapsulation, and define accessor functions, i.e. you'd have (in user.h):
const char * user_get_name(const User user);
void user_set_name(User user, const char *new_name);
...
Please note that including the * in the typedef is often confusing, in my opinion.