/* Follows the linsk down through as SLList printing the nodes. Terminates when the pointer is NULL. */ #include "LinkList.h" void SLLPrint(struct SLLNode SLList[]){ struct SLLNode Node; Node = SLList[0]; while((Node.down)!=NULL){ SLLNodePrint(Node); Node = *(Node.down); }; };