mkdir_recursive.h

Go to the documentation of this file.
00001 /*
00002 Copyright (C) 2015- The University of Notre Dame
00003 This software is distributed under the GNU General Public License.
00004 See the file COPYING for details.
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

Generated on 17 Sep 2019 for cctools by  doxygen 1.6.1