mkdir_recursive.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef MKDIR_RECURSIVE_H
00008 #define MKDIR_RECURSIVE_H
00009
00010 #include "compat-at.h"
00011
00012 #include <fcntl.h>
00013 #include <sys/stat.h>
00014
00024 int mkdirat_recursive(int fd, const char *path, mode_t mode);
00025
00032 int mkdir_recursive(const char *path, mode_t mode);
00033
00034
00042 int mkdirat_recursive_parents(int fd, const char *path, mode_t mode);
00043
00050 int mkdir_recursive_parents(const char *path, mode_t mode);
00051
00052 #endif