2000-04-27 22:03:57 +02:00
|
|
|
/*************
|
|
|
|
|
* Header file for error.c
|
|
|
|
|
* 1999 E. Rouat
|
|
|
|
|
************/
|
|
|
|
|
|
|
|
|
|
#ifndef ERROR_H_INCLUDED
|
|
|
|
|
#define ERROR_H_INCLUDED
|
|
|
|
|
|
2010-01-30 14:21:27 +01:00
|
|
|
void controlled_exit(int status);
|
2000-04-27 22:03:57 +02:00
|
|
|
void fperror(char *mess, int code);
|
|
|
|
|
void ft_sperror(int code, char *mess);
|
|
|
|
|
void fatal(void);
|
|
|
|
|
void internalerror(char *message);
|
|
|
|
|
|
|
|
|
|
#endif
|