Select Git revision
Forked from
algorithmique / cours
Source project has a limited visibility.
stack.h 198 B
/* Author : Dario GENGA
* Date : 16.11.2021
* Description : Library to manipulate the stack
*/
#ifndef _PILE_H
#define _PILE_H
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#endif