acl/app/wizard/file_copy.h
zsxxsz cc05b877a2 first commit acl to github
first commit acl to github
2013-08-18 17:42:25 +08:00

12 lines
232 B
C

#pragma once
struct FILE_FROM_TO
{
const char* from;
const char* to;
};
bool file_copy(const char* from, const char* to);
bool files_copy(const char* name, const FILE_FROM_TO* tab,
const char* from_path, const char* to_path);