bc/bc/file/Move.hpp

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