summaryrefslogtreecommitdiffstats
path: root/include/fileutils.h
blob: 33aba0a0d51a8123b06078ad207d0fa8acdcae9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef UTIL_LINUX_FILEUTILS
#define UTIL_LINUX_FILEUTILS

extern int xmkstemp(char **tmpname);

static inline FILE *xfmkstemp(char **tmpname)
{
	int fd;
	FILE *ret;
	fd = xmkstemp(tmpname);
	if (fd == -1) {
		return NULL;
	}
	if (!(ret = fdopen(fd, "w+"))) {
		close(fd);
		return NULL;
	}
	return ret;
}

extern int get_fd_tabsize(void);

#endif /* UTIL_LINUX_FILEUTILS */