Skip to content
Snippets Groups Projects
Verified Commit 7560c018 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

stack null

parent 013653ff
Branches
No related tags found
No related merge requests found
Pipeline #14964 passed
...@@ -535,7 +535,7 @@ typedef element* stack; ...@@ -535,7 +535,7 @@ typedef element* stack;
. . . . . .
```C ```C
stack stack_create(); // return NULL; void stack_create(stack *s); // *s = NULL;
void stack_destroy(stack *s); void stack_destroy(stack *s);
void stack_push(stack *s, int val); void stack_push(stack *s, int val);
void stack_pop(stack *s, int *val); void stack_pop(stack *s, int *val);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment