aboutsummaryrefslogtreecommitdiffstats
path: root/src/easydir.h
blob: 0ba567783a1a8d59cbb4cea51ce873b8ea715038 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef EASYDIR_H
#define EASYDIR_H

enum status_file {
	F_SUCCESS,
	F_NOEXIST,
	F_ISDIR
};

int checkFileExist(char *path_to_file);
char *fileCropLineFeed(char *path, char *text, int maxlen);

#endif