#include #include #include "stack.h" void test_on_empty_stack(void) { StackNode *stack = malloc(sizeof(StackNode)); StackNode *a = pop(stack); printf("%s", stack); } void test_push(void) { int *test_value = malloc(sizeof(int)); test_value = (int*)1; StackNode *stack = malloc(sizeof(StackNode)); StackNode *new_stack = push(stack, test_value); } int main() { printf("============================\nStack Tests\n============================\n"); test_on_empty_stack; return EXIT_SUCCESS; }