#ifndef _NODE_H #define _NODE_H #include struct node { char value; struct node *after; struct node *prior; }; typedef struct node Node; Node *mknode(char ); // allocate new node containing value Node *cpnode(Node *); // duplicate node Node *rmnode(Node *); // deallocate node #endif