#ifndef __common_h__
#define __common_h__


/*------------------------------------------------------------------------------
  Define
  ----------------------------------------------------------------------------*/
#define CAR_LIGNE '\n'
#define CAR_END_STRING '\0'
#define CAR_ESPACE ' '

#define TRUE 1
#define FALSE 0


/*------------------------------------------------------------------------------
  Types personnalisés
  ----------------------------------------------------------------------------*/
typedef char * string;


#endif


