Fabcoin Core  0.16.2
P2P Digital Currency
fs.cpp
Go to the documentation of this file.
1 #include <fs.h>
2 
3 namespace fsbridge {
4 
5 FILE *fopen(const fs::path& p, const char *mode)
6 {
7  return ::fopen(p.string().c_str(), mode);
8 }
9 
10 FILE *freopen(const fs::path& p, const char *mode, FILE *stream)
11 {
12  return ::freopen(p.string().c_str(), mode, stream);
13 }
14 
15 } // fsbridge
FILE * freopen(const fs::path &p, const char *mode, FILE *stream)
Definition: fs.cpp:10
FILE * fopen(const fs::path &p, const char *mode)
Definition: fs.cpp:5
evm_mode mode
Definition: SmartVM.cpp:47
Filesystem operations and types.
Definition: fs.cpp:3