summaryrefslogtreecommitdiff
path: root/lib/dirname.h
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-05-12 15:46:36 +0000
committerJim Meyering <jim@meyering.net>2001-05-12 15:46:36 +0000
commitdbe66b162ba4c56d4817b9c75ce67b33d812ec33 (patch)
treeb45e2ba609850bb39e1eb520a7992d9581ebb078 /lib/dirname.h
parentf6e82b7dea359a964166ca7bd192fd3782eba4b9 (diff)
downloadcoreutils-dbe66b162ba4c56d4817b9c75ce67b33d812ec33.tar.xz
(DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN): New macros.
(base_name, base_len, dir_len, strip_trailing_slashes): New decls.
Diffstat (limited to 'lib/dirname.h')
-rw-r--r--lib/dirname.h22
1 files changed, 19 insertions, 3 deletions
diff --git a/lib/dirname.h b/lib/dirname.h
index fc4669960..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,7 +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));
+
+int strip_trailing_slashes PARAMS ((char *path));
#endif /* not DIRNAME_H_ */