mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 10:02:30 +00:00
13 lines
196 B
C++
13 lines
196 B
C++
#ifndef BC_FILE_MOVE_HPP
|
|
#define BC_FILE_MOVE_HPP
|
|
|
|
namespace Blizzard {
|
|
namespace File {
|
|
|
|
// move
|
|
bool Move(const char* src, const char* dst);
|
|
|
|
} // namespace File
|
|
} // namespace Blizzard
|
|
|
|
#endif
|