xref: /aosp_15_r20/build/make/tools/atree/fs.h (revision 9e94795a3d4ef5c1d47486f9a02bb378756cea8a)
1 #ifndef FS_H
2 #define FS_H
3 
4 #include <string>
5 
6 using namespace std;
7 
8 int remove_recursively(const string& path);
9 int mkdir_recursively(const string& path);
10 int copy_file(const string& src, const string& dst);
11 int strip_file(const string& path);
12 
13 #endif // FS_H
14