Removed use of print function

master
Aadhavan Srinivasan 2 years ago
parent 22f370f888
commit 2f3431d036

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

Loading…
Cancel
Save