00001 /* 00002 Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin 00003 Copyright (C) 2005- The University of Notre Dame 00004 This software is distributed under the GNU General Public License. 00005 See the file COPYING for details. 00006 */ 00007 00008 #ifndef CREATE_DIR_H 00009 #define CREATE_DIR_H 00010 00013 #include <sys/stat.h> 00014 00021 int create_dir (const char *path, mode_t mode); 00022 00029 int create_dir_parents (const char *path, mode_t mode); 00030 00031 #endif 00032 00033 /* vim: set noexpandtab tabstop=4: */