/**************************************************************************/
/*                                                                        */
/*                              BOOLEAN HANDLER                           */
/*               ==========================================               */
/*                                                                        */
/*                                                                        */
/*  MODULE      : Boolean                                                 */
/*  NOM         : Boolean.h                                               */
/*  FONCTION    :                                                         */
/*                                                                        */
/*  RESPONSABLE : HEWES Gerald                                            */
/*  TEL         : 33 (1) 46 24 20 27                                      */
/*                                                                        */
/**************************************************************************/

/**************************************************************************/
/*                                                                        */
/* 880000 HEW First Released Version    V 0.10                            */
/*                                                                        */
/**************************************************************************/

#ifndef BOOLEAN_H
#define BOOLEAN_H

#include <exec/types.h>

typedef unsigned int   BOOLEAN;

#ifndef TRUE
#define TRUE 1
#endif

#ifndef FALSE
#define FALSE 0
#endif

#define VRAI 1
#define FAUX 0
#define NULLE 0

#define forever for(;;)

#endif

/*************************  CIVILISATION ENDS HERE  ***********************/


