aboutsummaryrefslogtreecommitdiff
path: root/chad/remove_all.h
blob: 2c218b19a5f2be8b1518dd60ef439b597a00b48a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef REMOVE_ALL_H
#define REMOVE_ALL_H

/* C imitation of `std::filesystem::remove_all()` from C++17.
 * Unlike standard C remove(3), it can remove recursively.
 */
int remove_all(const char * const p);

// The contents of this file are Public Domain.

#endif