SCR/SCR3.1/TP6/stack/stack.c

33 lines
282 B
C
Raw Normal View History

2023-10-12 16:07:28 +02:00
#include "stack.h"
#include <stdlib.h>
#include <assert.h>
struct stack_t {
/*
votre implantation
*/
};
stack_t * stack_create( int max_size)
{
}
int stack_destroy(stack_t * s)
{
}
int stack_push(stack_t *s,int val)
{
}
int stack_pop(stack_t *s,int * val)
{
}