Remove artifact functions.

This commit is contained in:
realaltffour 2020-04-25 14:11:01 +03:00
parent 2a4ce1e8da
commit ddb87653b3
No known key found for this signature in database
GPG Key ID: 7115CD2AC9A76A56
1 changed files with 0 additions and 8 deletions

View File

@ -29,7 +29,6 @@ static int watch_list;
char *strrev(char *str);
char *get_directory(const char *param);
char *get_extension(const char *name);
int is_regular_file(const char *path);
void move(const char *name);
int main(int argc, char *argv[])
@ -183,10 +182,3 @@ char *strrev(char *str)
}
return str;
}
int is_regular_file(const char *path)
{
struct stat path_stat;
stat(path, &path_stat);
return S_ISREG(path_stat.st_mode);
}