Blame lib/dosname.h

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