00001 /* 00002 Copyright (C) 2014- 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 UNLINK_RECURSIVE_H 00008 #define UNLINK_RECURSIVE_H 00009 00010 #include "compat-at.h" 00011 00012 #include <fcntl.h> 00013 00021 int unlinkat_recursive (int fd, const char *path); 00022 00027 int unlink_recursive (const char *path); 00028 00033 int unlink_dir_contents (const char *path); 00034 00035 #endif