It seems to be working but I need to ckeck again

This commit is contained in:
Meyer Simon
2025-05-03 19:29:38 -04:00
parent 468e3f67f7
commit 18b5daea0e
6 changed files with 181 additions and 27 deletions

View File

@ -32,6 +32,7 @@ void * S_Pop(Stack *s);
void * S_Peek(Stack *s);
bool S_IsEmpty(Stack *s);
int S_Size(Stack *s);
void S_Merge(Stack *list);
//______________________________________________________________________________________________
typedef union TNConstUnion TNConstUnion;