#ifndef LINKED_LIST_H #define LINKED_LIST_H #define FALSE 0 #define TRUE 1 typedef struct Node { int value; struct Node *next; } NODE_T; #endif