remove_all/remove_all.h
2025-02-02 13:07:53 +01:00

12 lines
263 B
C++

#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