1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#ifndef __APPEND_H__
#define __APPEND_H__

typedef struct _Node {
    int value;
    struct _Node* next;
} Node;

void append(int value, Node** a_head, Node** a_tail);
void print_list(Node* head);
void destroy_list(Node** a_head, Node** a_tail);


#endif /* end of include guard: __APPEND_H__ */

© Copyright 2022 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.