Dash Core Source Documentation (0.16.0.1)

Find detailed information regarding the Dash Core source code.

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
Filesystem operations and types.
Definition: fs.cpp:3
Released under the MIT license