#ifndef ERRORS_H #define ERRORS_H #include "../libft/includes/libft.h" typedef enum { ERROR_BASIC = 0, ERROR_UNKNOWN_TOKEN = -1, } program_error; int stop_errors(int err); #endif