summaryrefslogtreecommitdiffstats
path: root/filecntl.h
blob: 5d8d6cc53fa07084677c5ea088d9a3a10c0a8352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef REPREPRO_FILECNTL_H
#define REPREPRO_FILECNTL_H

#ifndef HAVE_CLOSEFROM
void closefrom(int);
#endif
void markcloseonexec(int);
int deletefile(const char *);
bool isanyfile(const char *);
bool isregularfile(const char *);
bool isdirectory(const char *fullfilename);

#endif