2010-12-10 16:49:29 +01:00
|
|
|
#ifndef __LIFO_H
|
2013-06-20 18:18:29 +02:00
|
|
|
#define __LIFO_H
|
2010-12-10 16:49:29 +01:00
|
|
|
|
|
|
|
int lifo_empty(int *array);
|
|
|
|
void lifo_init(int *array, int n);
|
|
|
|
void lifo_insert(int *array, int i);
|
|
|
|
int lifo_get(int *array);
|
|
|
|
|
|
|
|
#endif /* __LIFO_H */
|