file.h 313 B

1234567891011121314151617181920
  1. /*
  2. * File: file.h
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 23 novembre 2018
  6. */
  7. #ifndef FILE_H
  8. #define FILE_H
  9. /* --- Include --- */
  10. #include "constante.h"
  11. /* --- Fonctions --- */
  12. boolean is_dir(const char*);
  13. char** file_list(const char*, int*);
  14. char* file_get_content(const char*);
  15. #endif /* FILE_H */