mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Add prototypes for CheckMagic, IsArchive, and IsBytecode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9900 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7879206b0f
commit
f33d00f0d8
@ -17,8 +17,23 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
/// FileOpenable - Returns true IFF Filename names an existing regular
|
||||
/// file which we can successfully open.
|
||||
/// CheckMagic - Returns true IFF the file named FN begins with Magic. FN must
|
||||
/// name a readable file.
|
||||
///
|
||||
bool CheckMagic (const std::string &FN, const std::string &Magic);
|
||||
|
||||
/// IsArchive - Returns true IFF the file named FN appears to be a "ar" library
|
||||
/// archive. The file named FN must exist.
|
||||
///
|
||||
bool IsArchive (const std::string &FN);
|
||||
|
||||
/// IsBytecode - Returns true IFF the file named FN appears to be an LLVM
|
||||
/// bytecode file. The file named FN must exist.
|
||||
///
|
||||
bool IsBytecode (const std::string &FN);
|
||||
|
||||
/// FileOpenable - Returns true IFF Filename names an existing regular file
|
||||
/// which we can successfully open.
|
||||
///
|
||||
bool FileOpenable (const std::string &Filename);
|
||||
|
||||
|
@ -17,8 +17,23 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
/// FileOpenable - Returns true IFF Filename names an existing regular
|
||||
/// file which we can successfully open.
|
||||
/// CheckMagic - Returns true IFF the file named FN begins with Magic. FN must
|
||||
/// name a readable file.
|
||||
///
|
||||
bool CheckMagic (const std::string &FN, const std::string &Magic);
|
||||
|
||||
/// IsArchive - Returns true IFF the file named FN appears to be a "ar" library
|
||||
/// archive. The file named FN must exist.
|
||||
///
|
||||
bool IsArchive (const std::string &FN);
|
||||
|
||||
/// IsBytecode - Returns true IFF the file named FN appears to be an LLVM
|
||||
/// bytecode file. The file named FN must exist.
|
||||
///
|
||||
bool IsBytecode (const std::string &FN);
|
||||
|
||||
/// FileOpenable - Returns true IFF Filename names an existing regular file
|
||||
/// which we can successfully open.
|
||||
///
|
||||
bool FileOpenable (const std::string &Filename);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user