#ifndef HEADER_H #define HEADER_H //If you are getting an error, uncomment these two lines below, and the endif at the end of the file //#ifdef _MSC_VER //#define _CRT_SECURE_NO_WARNINGS #include #include typedef struct node{ int value; struct node *next; }Node; typedef Node *NodePtr; //main calls menu, which as a the hub for the functions to be called. int menu(); //this will insert a new node into the linked list int insert(NodePtr *list, int value); //this will remove a node with the chosen value int delete(NodePtr *list, int value); //print list int print(NodePtr list); #endif //If you are getting an error uncomment the endif below //#endif