gnulib: update to 776af40e0
[deliverable/binutils-gdb.git] / gnulib / import / dirname.h
CommitLineData
6a29c58e
YQ
1/* Take file names apart into directory and base names.
2
9c9d63b1 3 Copyright (C) 1998, 2001, 2003-2006, 2009-2021 Free Software Foundation,
6a29c58e
YQ
4 Inc.
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
c0c3707f 17 along with this program. If not, see <https://www.gnu.org/licenses/>. */
6a29c58e
YQ
18
19#ifndef DIRNAME_H_
20# define DIRNAME_H_ 1
21
22# include <stdbool.h>
23# include <stddef.h>
698be2d8 24# include "filename.h"
9c9d63b1 25# include "basename-lgpl.h"
6a29c58e
YQ
26
27# ifndef DIRECTORY_SEPARATOR
28# define DIRECTORY_SEPARATOR '/'
29# endif
30
4a626d0a
PA
31#ifdef __cplusplus
32extern "C" {
33#endif
34
6a29c58e 35# if GNULIB_DIRNAME
c0c3707f 36char *base_name (char const *file) _GL_ATTRIBUTE_MALLOC;
6a29c58e
YQ
37char *dir_name (char const *file);
38# endif
39
40char *mdir_name (char const *file);
6a29c58e 41size_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;
6a29c58e
YQ
42
43bool strip_trailing_slashes (char *file);
44
4a626d0a
PA
45#ifdef __cplusplus
46} /* extern "C" */
47#endif
48
6a29c58e 49#endif /* not DIRNAME_H_ */
This page took 0.464293 seconds and 4 git commands to generate.