X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fdirname.h;h=cea14c04ff479f51bc7635a847e476b0ec118fcc;hb=4c692979e6e60bc1fdb6a6ef5ae3f8b2e9600fc3;hp=6824d7ba866c1fc69af6e0f31750feabb2daf3aa;hpb=3d43e290d7b0c0734ef28e24cc5b9435ba427d05;p=gnulib.git diff --git a/lib/dirname.h b/lib/dirname.h index 6824d7ba8..cea14c04f 100644 --- a/lib/dirname.h +++ b/lib/dirname.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998 Free Software Foundation, Inc. +/* Copyright (C) 1998, 2001 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 @@ -25,10 +25,23 @@ # endif # endif -char * -dir_name PARAMS ((const char *path)); +# ifndef DIRECTORY_SEPARATOR +# define DIRECTORY_SEPARATOR '/' +# endif + +# ifndef ISSLASH +# define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR) +# endif + +# ifndef FILESYSTEM_PREFIX_LEN +# define FILESYSTEM_PREFIX_LEN(Filename) 0 +# endif + +char *base_name PARAMS ((char const *path)); +char *dir_name PARAMS ((char const *path)); +size_t base_len PARAMS ((char const *path)); +size_t dir_len PARAMS ((char const *path)); -size_t -dir_name_r PARAMS ((const char *path, const char **result)); +int strip_trailing_slashes PARAMS ((char *path)); #endif /* not DIRNAME_H_ */