Initial Contribution

This commit is contained in:
The Android Open Source Project
2008-10-21 07:00:00 -07:00
commit b6c1cf6de7
384 changed files with 648683 additions and 0 deletions

12
tools/atree/fs.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef FS_H
#define FS_H
#include <string>
using namespace std;
int remove_recursively(const string& path);
int mkdir_recursively(const string& path);
int copy_file(const string& src, const string& dst);
#endif // FS_H