X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstripslash.c;h=20cdc48b5ff87fb44e10384add15edd374aee4d6;hb=aaea9d07f672ec45a4687a5e99c3994ef41d4491;hp=9c0ad3d62e0704a069f07e9a0c4f8a8d85ee8c96;hpb=89f2b4892655a929a506eff123c9126a88e2c8eb;p=gnulib.git diff --git a/lib/stripslash.c b/lib/stripslash.c index 9c0ad3d62..20cdc48b5 100644 --- a/lib/stripslash.c +++ b/lib/stripslash.c @@ -19,12 +19,16 @@ # include #endif -#if defined(STDC_HEADERS) || defined(HAVE_STRING_H) +#if STDC_HEADERS || HAVE_STRING_H # include #else # include #endif +#ifndef ISSLASH +# define ISSLASH(C) ((C) == '/') +#endif + /* Remove trailing slashes from PATH. This is useful when using filename completion from a shell that adds a "/" after directory names (such as tcsh and bash), because @@ -37,6 +41,6 @@ strip_trailing_slashes (char *path) int last; last = strlen (path) - 1; - while (last > 0 && path[last] == '/') + while (last > 0 && ISSLASH (path[last])) path[last--] = '\0'; }