Blame lib/dosname.h

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