summaryrefslogblamecommitdiffstats
path: root/include/fileutils.h
blob: 33aba0a0d51a8123b06078ad207d0fa8acdcae9e (plain) (tree)
1
2
3
4
5


                            
                                    
 













                                             



                                 
#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 */