mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 01:52:30 +00:00
16 lines
235 B
C++
16 lines
235 B
C++
#ifndef BC_FILE_CLOSE_HPP
|
|
#define BC_FILE_CLOSE_HPP
|
|
|
|
#include <cstdint>
|
|
#include "bc/file/Types.hpp"
|
|
|
|
namespace Blizzard {
|
|
namespace File {
|
|
|
|
// close
|
|
bool Close(StreamRecord* file);
|
|
|
|
} // namespace File
|
|
} // namespace Blizzard
|
|
|
|
#endif
|