Select Git revision
create-S3-and-put-docs.py
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;
}