change slogen

This commit is contained in:
anon 2025-01-26 15:14:20 +01:00
parent c5c737ef45
commit 9799a872c4
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# remove\_all # remove\_all
> C replication of `std::filesystem::remove_all` of C++17. > C imitation of `std::filesystem::remove_all()` from C++17.
## SYNOPSIS ## SYNOPSIS

View File

@ -1,7 +1,7 @@
#ifndef REMOVE_ALL_H #ifndef REMOVE_ALL_H
#define REMOVE_ALL_H #define REMOVE_ALL_H
/* C replication of `std::filesystem::remove` of C++17. /* C imitation of `std::filesystem::remove_all()` from C++17.
* Unlike standard C remove(3), it can remove recursively. * Unlike standard C remove(3), it can remove recursively.
*/ */
int remove_all(const char * const p); int remove_all(const char * const p);