/* Initializes the first entry of the Array of Nodes as a Top entry the dwon pointer is to NULL. */ #include "LinkList.h" void SLLInit(struct SLLNode SLList[]){ SLList[0].value = INT_MAX; SLList[0].current = &SLList[0]; SLList[0].down = NULL; };