#include "person.h" #include #ifndef LIST_H #define LIST_H typedef struct node { person_t content; struct node *next; } node_t; int insert_list(node_t *,person_t *); int remove_list(node_t *,person_t *); void show_list(node_t *); void clear_list(node_t *); #endif