From 61ef81a837526b8daffc4e9c235df0a6766f690e Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 19 Feb 1998 21:31:06 +0000 Subject: [PATCH] (dirname): Include ctype.h. [IN_CTYPE_DOMAIN]: Define. [ISALPHA]: Define. [MSDOS]: Add support for DOS-style file names with drive letters. Based on a patch from Eli Zaretskii. --- lib/dirname.c | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/lib/dirname.c b/lib/dirname.c index 3481131..237dd4b 100644 --- a/lib/dirname.c +++ b/lib/dirname.c @@ -1,5 +1,5 @@ /* dirname.c -- return all but the last element in a path - Copyright (C) 1990 Free Software Foundation, Inc. + Copyright (C) 1990, 1998 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,22 +16,31 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H -#include +# include #endif #ifdef STDC_HEADERS -#include +# include #else char *malloc (); #endif -#if defined(STDC_HEADERS) || defined(HAVE_STRING_H) -#include +#if defined STDC_HEADERS || defined HAVE_STRING_H +# include #else -#include -#ifndef strrchr -#define strrchr rindex +# include +# ifndef strrchr +# define strrchr rindex +# endif #endif + +#include + +#if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII) +# define IN_CTYPE_DOMAIN(c) 1 +#else +# define IN_CTYPE_DOMAIN(c) isascii(c) #endif +#define ISALPHA(Ch) (IN_CTYPE_DOMAIN (Ch) && isalpha (Ch)) /* Return the leading directories part of PATH, allocated with malloc. If out of memory, return 0. @@ -55,6 +64,13 @@ dirname (path) } else { + char *lim = path; + +#ifdef MSDOS + /* If canonicalized "d:/path", leave alone the root case "d:/". */ + lim = (ISALPHA (path[0]) && path[1] == ':') ? path + 2 : path; +#endif + /* Remove any trailing slashes from the result. */ while (slash > path && *slash == '/') --slash; -- 2.7.4