Removed use of print function

This commit is contained in:
2023-04-12 22:51:05 -05:00
parent 22f370f888
commit 2f3431d036

View File

@@ -28,7 +28,6 @@ void stack_push(Stack* stack,void* element) {
stack->capacity *= 2; stack->capacity *= 2;
} }
*(stack->data + stack->top_index) = element; *(stack->data + stack->top_index) = element;
printf("Adding to index %d\n",stack->top_index);
stack->top_index++; stack->top_index++;
stack->curr_size++; stack->curr_size++;
return; return;