Skip to content
Snippets Groups Projects
Commit 85d3fdf6 authored by Suna Yelgin's avatar Suna Yelgin
Browse files

Update stack.h

parent 1a2767ce
Branches
No related merge requests found
......@@ -5,13 +5,13 @@
/**@brief Struktur des Stacks.
*/
typedef struct intstack_h
typedef struct
{
unsigned length;
unsigned used;
int* array;
} IntStack;
} IntStack_h;
/* *** öffentliche Schnittstelle ******************************************** */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment