#pragma once #ifndef LINKEDLIST_STACK_H #define LINKEDLIST_STACK_H #include #include #include typedef struct tagNode { char* Data; struct tagNode* NextNode; } Node; typedef struct tagLinkedListStack { Node* List; Node* Top; } LinkedListStack; void LLS_CreateStack(LinkedListStack** Stack); void LLS_DestroyStack(LinkedListStack* Stack); Node* LLS_CreateNode(char* Data); void LLS_DestroyNode(Node* _Node); void LLS_Push(LinkedListStack* Stack, Node* NewNode); Node* LLS_Pop(LinkedListStack* Stack); Node* LLS_Top(LinkedListStack* Stack); int LLS_GetSize(LinkedListStack* Stack); int LLS_IsEmpty(LinkedListStack* Stack); #endif