summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/util.h b/src/util.h
index 89278f92..451957d8 100644
--- a/src/util.h
+++ b/src/util.h
@@ -115,16 +115,6 @@ extern int base64_decode (std::string const & in, unsigned char* out, int out_le
extern boost::optional<boost::filesystem::path> relative_to_root (boost::filesystem::path root, boost::filesystem::path file);
-/** @param p Path to open
- * @param t mode flags, as for fopen(3)
- * @return FILE pointer or 0 on error
- *
- * Apparently there is no way to create an ofstream using a UTF-8
- * filename under Windows. We are hence reduced to using fopen
- * with this wrapper.
- */
-extern FILE * fopen_boost (boost::filesystem::path, std::string);
-
extern std::string file_to_string (boost::filesystem::path, uintmax_t max_length = 1048576);
/** @param key RSA private key in PEM format (optionally with -----BEGIN... / -----END...)