Datentyp fuer Strukturvariable data auf void geandert

This commit is contained in:
silvana884 2025-12-10 10:04:13 +01:00
parent c860a197ee
commit b3c9fec7ba
2 changed files with 4 additions and 3 deletions

View File

@ -9,9 +9,10 @@ The latest element is taken from the stack. */
//TODO: passenden Datentyp als struct anlegen //TODO: passenden Datentyp als struct anlegen
typedef{ typedef{
int* data; void* data;
struct StackNode *next; struct StackNode *next;
}StackNode; }StackNode;cmd
// Pushes data as pointer onto the stack. // Pushes data as pointer onto the stack.
StackNode *push(StackNode *stack, void *data); StackNode *push(StackNode *stack, void *data);