summaryrefslogtreecommitdiff
path: root/include/llvm/Support/FileUtilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/FileUtilities.h')
-rw-r--r--include/llvm/Support/FileUtilities.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/llvm/Support/FileUtilities.h b/include/llvm/Support/FileUtilities.h
index 47704946c8..3bba3fec73 100644
--- a/include/llvm/Support/FileUtilities.h
+++ b/include/llvm/Support/FileUtilities.h
@@ -51,4 +51,21 @@ std::string getUniqueFilename(const std::string &FilenameBase);
/// In case of failure, the file's access attributes are unspecified.
///
bool MakeFileExecutable (const std::string & Filename);
+
+///
+/// Method: MakeFileReadable()
+///
+/// Description:
+/// This method turns on whatever access attributes are needed to make the
+/// specified file readable.
+///
+/// Return value:
+/// True - The operation succeeded.
+/// False - The operation failed.
+///
+/// Notes:
+/// In case of failure, the file's access attributes are unspecified.
+///
+bool MakeFileReadable (const std::string & Filename);
+
#endif