Skip to content
Snippets Groups Projects

Resolve "Add clear function"

Merged orestis.malaspin requested to merge 13-add-clear-function into main
All threads resolved!
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 3
1
#include <stdbool.h>
#ifndef _STACK_H_
#ifndef _STACK_H_
#define _STACK_H_
#define _STACK_H_
 
#include <stdbool.h>
 
 
typedef struct _stack {
typedef struct _stack {
int *data;
int *data;
int capacity;
int capacity;
Loading