Skip to content
Snippets Groups Projects
Commit 6b267149 authored by PAILLE Kyriann's avatar PAILLE Kyriann :8ball:
Browse files

Upload New File

parent 3b46a488
No related branches found
No related tags found
No related merge requests found
stack.c 0 → 100644
#include "stack.h"
#include <string.h> /* strdup */
#include <stdio.h> /* printf */
#include <stdlib.h> /* malloc, free */
#include <stdbool.h>
// const empty_stack = false;
// bool StackIsEmpty(stack *s)
// {
// return s == NULL;
// }
// stack StackPush(stack s) {
// stack *new_s = malloc(sizeof(stack));
// new_s->
// return
// }
// stack stackHead(stack *s)
// { stack neww_s;
// neww_s = LocationPrint(loc);
// LocationDelete(s);
// return new_s;
// }
// stack stackPop(stack *s)
// {
// stack old_s = stackHead(s);
// return *s;
// }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment