/usr/include/boost/nowide
NameSizeModeActions
detail/-0755rm
utf/-0755rm
args.hpp57360644editdlrm
config.hpp34990644editdlrm
convert.hpp48950644editdlrm
cstdio.hpp13870644editdlrm
cstdlib.hpp19900644editdlrm
filebuf.hpp156220644editdlrm
filesystem.hpp9270644editdlrm
fstream.hpp144860644editdlrm
iostream.hpp27110644editdlrm
replacement.hpp5630644editdlrm
stackstring.hpp73040644editdlrm
stat.hpp20480644editdlrm
utf8_codecvt.hpp160550644editdlrm
windows.hpp10690644editdlrm
Edit: /usr/include/boost/nowide/cstdio.hpp (1387B)
// // Copyright (c) 2012 Artyom Beilis (Tonkikh) // Copyright (c) 2020 Alexander Grund // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE or copy at // http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_NOWIDE_CSTDIO_HPP_INCLUDED #define BOOST_NOWIDE_CSTDIO_HPP_INCLUDED #include #include namespace boost { namespace nowide { #if !defined(BOOST_WINDOWS) && !defined(BOOST_NOWIDE_DOXYGEN) using std::fopen; using std::freopen; using std::remove; using std::rename; #else /// /// \brief Same as freopen but file_name and mode are UTF-8 strings /// BOOST_NOWIDE_DECL FILE* freopen(const char* file_name, const char* mode, FILE* stream); /// /// \brief Same as fopen but file_name and mode are UTF-8 strings /// BOOST_NOWIDE_DECL FILE* fopen(const char* file_name, const char* mode); /// /// \brief Same as rename but old_name and new_name are UTF-8 strings /// BOOST_NOWIDE_DECL int rename(const char* old_name, const char* new_name); /// /// \brief Same as rename but name is UTF-8 string /// BOOST_NOWIDE_DECL int remove(const char* name); #endif namespace detail { BOOST_NOWIDE_DECL FILE* wfopen(const wchar_t* filename, const wchar_t* mode); } } // namespace nowide } // namespace boost #endif