I have a struct that has a pointer to another struct:
typedef struct _contacts { Contact *elements; int length; int capacity; } Contacts; <
typedef struct _contacts { Contact *elements; int length; int capacity; } Contacts;