Skip to content
Snippets Groups Projects
Commit 6e8cc6fa authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Merge branch '2-add-stack-data-stucture' into 'main'

Resolve "Add stack data stucture"

Closes #2

See merge request !2
parents 714e23f4 5605029f
Branches master
No related tags found
1 merge request!2Resolve "Add stack data stucture"
stack.h 0 → 100644
#ifndef _STACK_H_
#define _STACK_H_
typedef struct _stack {
int *data;
int capacity;
int top;
} stack;
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment