Skip to content
Snippets Groups Projects
Select Git revision
  • 607b999efc7aba062c597a0454ef4f6e4fc4030e
  • main default protected
2 results

create-S3-and-put-docs.py

Blame
  • Forked from LSDS / Teaching / Master / Cloud / chatbot-lab
    Source project has a limited visibility.
    stack.c 190 B
    #include <stdio.h>
    #include <stdbool.h>
    #include <stdbool.h>
    #include "stack.h"
    
    void stack_destroy(stack *s){
        free(s->data);
        s->data = NULL;
        s->capacity = -1;
        s->top = -1;
    }