/* * File: constante.h * Author: Arthur Brandao * * Created on 31 octobre 2018 */ #ifndef CONSTANTE_H #define CONSTANTE_H /* --- General --- */ #define BUFFER_SIZE 512 /* --- Fichier --- */ #define STDIN 0 #define STDOUT 1 #define STDERR 2 /* --- Boolean --- */ #define boolean int #define true 1 #define false 0 /* --- Null --- */ #define null NULL #endif /* CONSTANTE_H */