/* LinkList.h defines a LLNode structure and function prototypes for a number of operations on a linked list */ #include #include /* Structure Definition */ typedef struct { int value; struct LLNode *up; struct LLNode *down; } LLNode; typedef struct { int m; LLNode *LL; } LL; /*Initializations*/ //void LLInit(LLNode *LL); /*Printing */ //void LLPrint(LLNode *LL); /* Insertion */ //int LLInsert(LL *LL, int in);