Files
hush3/src/fs.cpp
Jonathan "Duke" Leto 5d2307a709 Update copyrights to 2022
2022-09-19 15:45:30 -07:00

17 lines
326 B
C++

// Copyright (c) 2016-2022 The Hush developers
#include "fs.h"
namespace fsbridge {
FILE *fopen(const fs::path& p, const char *mode)
{
return ::fopen(p.string().c_str(), mode);
}
FILE *freopen(const fs::path& p, const char *mode, FILE *stream)
{
return ::freopen(p.string().c_str(), mode, stream);
}
} // fsbridge