constante.h 390 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * File: constante.h
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 31 octobre 2018
  6. */
  7. #ifndef CONSTANTE_H
  8. #define CONSTANTE_H
  9. /* --- General --- */
  10. #define BUFFER_SIZE 512
  11. /* --- Fichier --- */
  12. #define STDIN 0
  13. #define STDOUT 1
  14. #define STDERR 2
  15. /* --- Boolean --- */
  16. #define boolean int
  17. #define true 1
  18. #define false 0
  19. /* --- Null --- */
  20. #define null NULL
  21. #endif /* CONSTANTE_H */