18 lines
281 B
C
18 lines
281 B
C
|
#include "person.h"
|
||
|
#include <stdlib.h>
|
||
|
#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
|