main.h 298 B

1234567891011121314151617181920212223
  1. /*
  2. * File: main.h
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 22 novembre 2018
  6. */
  7. #ifndef MAIN_H
  8. #define MAIN_H
  9. /* --- Include --- */
  10. #include "constante.h"
  11. /* --- Constantes --- */
  12. #define END_USER 0
  13. #define END_ERR 1
  14. /* --- Fonctions --- */
  15. void notify_close(int);
  16. #endif /* MAIN_H */