Skip to content
Snippets Groups Projects
Commit 071e3098 authored by tom.ryser's avatar tom.ryser :carousel_horse:
Browse files

Merge branch 'main' into '3-add-makefile-with-structure'

# Conflicts:
#   stack.c
#   stack.h
parents aea23828 1ccc0ef1
No related branches found
No related tags found
1 merge request!3Resolve "add makefile with structure"
This commit is part of merge request !3. Comments created here will be created in the context of that merge request.
#include "../include/stack.h"
#include <stdio.h>
#include "stack.h"
#ifndef STACK_H
#define STACK_H
#ifndef _STACK_H_
#define _STACK_H_
typedef struct _stack {
int *data;
int capacity;
int top;
} stack;
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment