#ifndef FUNCTIONS_H #define FUNCTIONS_H #include #include int saisie(int min,int max); int ctoi(char); void pause(); void clear(); typedef char* string; typedef struct _cell cell,*stringLIFO; struct _cell{string val;cell* next;}; stringLIFO init_stringLIFO(); int is_emptyLIFO(stringLIFO); void push(stringLIFO*,string); string pop(stringLIFO*); string top(stringLIFO); void delete_LIFO(stringLIFO*); #endif