1234567891011121314151617181920 |
- /*
- * File: file.h
- * Author: Arthur Brandao
- *
- * Created on 23 novembre 2018
- */
- #ifndef FILE_H
- #define FILE_H
- /* --- Include --- */
- #include "constante.h"
- /* --- Fonctions --- */
- boolean is_dir(const char*);
- char** file_list(const char*, int*);
- char* file_get_content(const char*);
- #endif /* FILE_H */
|