mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-10-15 03:19:58 +00:00
add a new static method to portably determine whether a patch is
absolute or not, based on a patch by Gregory Curfman! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73368 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -309,6 +309,11 @@ namespace sys {
|
||||
/// @brief Determine if the path is absolute.
|
||||
bool isAbsolute() const;
|
||||
|
||||
/// This function determines if the path name is absolute, as opposed to
|
||||
/// relative.
|
||||
/// @brief Determine if the path is absolute.
|
||||
static bool isAbsolute(const char *NameStart, unsigned NameLen);
|
||||
|
||||
/// This function opens the file associated with the path name provided by
|
||||
/// the Path object and reads its magic number. If the magic number at the
|
||||
/// start of the file matches \p magic, true is returned. In all other
|
||||
|
Reference in New Issue
Block a user