Blame lib/dosname.h

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