Skip to content
Snippets Groups Projects

Resolve "Add pop function"

Merged ines.maya requested to merge 6-add-pop-function into main
2 unresolved threads

Closes #6 (closed)

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
stack.c 0 → 100644
1 // depile
2 void stack_pop(stack *s, int *value){
  • stack.c 0 → 100644
    1 // depile
    2 void stack_pop(stack *s, int *value){
    3 assert(s->top>=0 && "Stcak is empty\n");
    4
    5 if (s->top == s->capacity/4){
  • ines.maya added 1 commit

    added 1 commit

    Compare with previous version

  • orestis.malaspin added 24 commits

    added 24 commits

    Compare with previous version

  • mentioned in commit c4e5b4ad

  • Please register or sign in to reply
    Loading