You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
297 B
10 lines
297 B
#ifndef LINKED_LIST_H
|
|
#define LINKED_LIST_H
|
|
#include "../types.h"
|
|
|
|
void free_linked_list(node_info *p_list);
|
|
node_info *copy_linked_list(node_info *p_list);
|
|
void linked_list_append(node_info* p_head, node_info* new_node);
|
|
bool linked_list_remove(node_info* p_head, node_info* delete_node);
|
|
#endif
|