Blame lib/dosname.h

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