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

Update stack.h

parent f19a4882
Branches
No related merge requests found
......@@ -5,8 +5,12 @@
/**@brief Struktur des Stacks.
*/
typedef struct {
/* hier sollte noch etwas dazu kommen */
typedef struct
{
unsigned length;
unsigned used;
int* array;
} IntStack;
/* *** ö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