mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 02:47:56 +08:00
9697f95b8f
This reverts commit 15d999759e
.
12 lines
243 B
C
12 lines
243 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);
|