summaryrefslogblamecommitdiffstats
path: root/include/fileutils.h
blob: d0d4505cdbf0db7e858c8dd91e9302810150c5cb (plain) (tree)
1
2
3
4
5
6
7
8
9


                            
                                               
 
                                                        


                  
                                    


                            
                                                      




                            



                                 
#ifndef UTIL_LINUX_FILEUTILS
#define UTIL_LINUX_FILEUTILS

extern int xmkstemp(char **tmpname, char *dir);

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

extern int get_fd_tabsize(void);

#endif /* UTIL_LINUX_FILEUTILS */