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


                            





                   
                                                                         
 
                                                                                  


                  
 
                                            
                     
                            
 
                                                      




                            
 
                                                

                                
                                                  
                                                 
 
                                 
#ifndef UTIL_LINUX_FILEUTILS
#define UTIL_LINUX_FILEUTILS

#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>

#include "c.h"

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

static inline FILE *xfmkstemp(char **tmpname, const char *dir, const char *prefix)
{
	int fd;
	FILE *ret;

	fd = xmkstemp(tmpname, dir, prefix);
	if (fd == -1)
		return NULL;

	if (!(ret = fdopen(fd, "w+" UL_CLOEXECSTR))) {
		close(fd);
		return NULL;
	}
	return ret;
}

extern int dup_fd_cloexec(int oldfd, int lowfd);
extern int get_fd_tabsize(void);

extern int mkdir_p(const char *path, mode_t mode);
extern char *stripoff_last_component(char *path);

#endif /* UTIL_LINUX_FILEUTILS */