1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef EASYDIR_H #define EASYDIR_H enum status_file { F_ISFILE, F_NOEXIST, F_ISDIR }; int file_exist(const char *path); int count_dir_entries(const char *path); char *fileCropLineFeed(char *path, char *text, int maxlen); #endif