CM
SCR1.1
SCR1.2
SCR2.1
SCR2.2
SCR3.1
TP1
TP2
TP3
TP4
TP5
TP6
stack
Makefile
main.c
stack.c
stack.h
ex1.c
ex3.c
max
max.c
devoir27
gdf
gdf.c
arm
.gitignore
README.md
13 lines
227 B
C
13 lines
227 B
C
#ifndef _STACK_INT_H
|
|
#define _STACK_INT_H
|
|
|
|
typedef struct stack_t stack_t;
|
|
|
|
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);
|
|
|
|
|
|
#endif
|