7864dc39388150d096fcf9ecbab70c3b72e4c9f5
[debian/tar] / gnu / dirname.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /*  Take file names apart into directory and base names.
4
5     Copyright (C) 1998, 2001, 2003-2006, 2009-2013 Free Software Foundation,
6     Inc.
7
8     This program is free software: you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 3 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License
19     along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #ifndef DIRNAME_H_
22 # define DIRNAME_H_ 1
23
24 # include <stdbool.h>
25 # include <stddef.h>
26 # include "dosname.h"
27
28 # ifndef DIRECTORY_SEPARATOR
29 #  define DIRECTORY_SEPARATOR '/'
30 # endif
31
32 # ifndef DOUBLE_SLASH_IS_DISTINCT_ROOT
33 #  define DOUBLE_SLASH_IS_DISTINCT_ROOT 0
34 # endif
35
36 # if GNULIB_DIRNAME
37 char *base_name (char const *file);
38 char *dir_name (char const *file);
39 # endif
40
41 char *mdir_name (char const *file);
42 size_t base_len (char const *file) _GL_ATTRIBUTE_PURE;
43 size_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;
44 char *last_component (char const *file) _GL_ATTRIBUTE_PURE;
45
46 bool strip_trailing_slashes (char *file);
47
48 #endif /* not DIRNAME_H_ */