cctools
unlink_recursive.h
Go to the documentation of this file.
1/*
2Copyright (C) 2022 The University of Notre Dame
3This software is distributed under the GNU General Public License.
4See the file COPYING for details.
5*/
6
7#ifndef UNLINK_RECURSIVE_H
8#define UNLINK_RECURSIVE_H
9
10#include "compat-at.h"
11
12#include <fcntl.h>
13
21int unlinkat_recursive (int fd, const char *path);
22
27int unlink_recursive (const char *path);
28
33int unlink_dir_contents (const char *path);
34
35#endif
at syscall compatibility layer.