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-2019 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 <https://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 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 # if GNULIB_DIRNAME
41 char *base_name (char const *file) _GL_ATTRIBUTE_MALLOC;
42 char *dir_name (char const *file);
43 # endif
44 
45 char *mdir_name (char const *file);
46 size_t base_len (char const *file) _GL_ATTRIBUTE_PURE;
47 size_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;
48 char *last_component (char const *file) _GL_ATTRIBUTE_PURE;
49 
50 bool strip_trailing_slashes (char *file);
51 
52 #ifdef __cplusplus
53 } /* extern "C" */
54 #endif
55 
56 #endif /* not DIRNAME_H_ */
57