Blame lib/dosname.h

Packit Service a2489d
/* File names on MS-DOS/Windows systems.
Packit Service a2489d
Packit Service a2489d
   Copyright (C) 2000-2001, 2004-2006, 2009-2018 Free Software Foundation, Inc.
Packit Service a2489d
Packit Service a2489d
   This program is free software: you can redistribute it and/or modify
Packit Service a2489d
   it under the terms of the GNU General Public License as published by
Packit Service a2489d
   the Free Software Foundation; either version 3 of the License, or
Packit Service a2489d
   (at your option) any later version.
Packit Service a2489d
Packit Service a2489d
   This program is distributed in the hope that it will be useful,
Packit Service a2489d
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2489d
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2489d
   GNU General Public License for more details.
Packit Service a2489d
Packit Service a2489d
   You should have received a copy of the GNU General Public License
Packit Service a2489d
   along with this program.  If not, see <https://www.gnu.org/licenses/>.
Packit Service a2489d
Packit Service a2489d
   From Paul Eggert and Jim Meyering.  */
Packit Service a2489d
Packit Service a2489d
#ifndef _DOSNAME_H
Packit Service a2489d
#define _DOSNAME_H
Packit Service a2489d
Packit Service a2489d
#if (defined _WIN32 || defined __CYGWIN__ \
Packit Service a2489d
     || defined __EMX__ || defined __MSDOS__ || defined __DJGPP__)
Packit Service a2489d
   /* This internal macro assumes ASCII, but all hosts that support drive
Packit Service a2489d
      letters use ASCII.  */
Packit Service a2489d
# define _IS_DRIVE_LETTER(C) (((unsigned int) (C) | ('a' - 'A')) - 'a'  \
Packit Service a2489d
                              <= 'z' - 'a')
Packit Service a2489d
# define FILE_SYSTEM_PREFIX_LEN(Filename) \
Packit Service a2489d
          (_IS_DRIVE_LETTER ((Filename)[0]) && (Filename)[1] == ':' ? 2 : 0)
Packit Service a2489d
# ifndef __CYGWIN__
Packit Service a2489d
#  define FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE 1
Packit Service a2489d
# endif
Packit Service a2489d
# define ISSLASH(C) ((C) == '/' || (C) == '\\')
Packit Service a2489d
#else
Packit Service a2489d
# define FILE_SYSTEM_PREFIX_LEN(Filename) 0
Packit Service a2489d
# define ISSLASH(C) ((C) == '/')
Packit Service a2489d
#endif
Packit Service a2489d
Packit Service a2489d
#ifndef FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE
Packit Service a2489d
# define FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE 0
Packit Service a2489d
#endif
Packit Service a2489d
Packit Service a2489d
#if FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE
Packit Service a2489d
#  define IS_ABSOLUTE_FILE_NAME(F) ISSLASH ((F)[FILE_SYSTEM_PREFIX_LEN (F)])
Packit Service a2489d
# else
Packit Service a2489d
#  define IS_ABSOLUTE_FILE_NAME(F)                              \
Packit Service a2489d
     (ISSLASH ((F)[0]) || FILE_SYSTEM_PREFIX_LEN (F) != 0)
Packit Service a2489d
#endif
Packit Service a2489d
#define IS_RELATIVE_FILE_NAME(F) (! IS_ABSOLUTE_FILE_NAME (F))
Packit Service a2489d
Packit Service a2489d
#endif /* DOSNAME_H_ */