14 lines
190 B
C
14 lines
190 B
C
#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 |