2023-10-18 07:29:37 +00:00
|
|
|
/* Take file names apart into directory and base names.
|
2013-11-26 22:53:19 +00:00
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
Copyright (C) 1998, 2001, 2003-2006, 2009-2023 Free Software Foundation,
|
|
|
|
Inc.
|
2013-11-26 22:53:19 +00:00
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
This file is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
License, or (at your option) any later version.
|
2013-11-26 22:53:19 +00:00
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
This file is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
2013-11-26 22:53:19 +00:00
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2013-11-26 22:53:19 +00:00
|
|
|
|
|
|
|
#ifndef DIRNAME_H_
|
|
|
|
# define DIRNAME_H_ 1
|
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
# include <stdlib.h>
|
|
|
|
# include "filename.h"
|
|
|
|
# include "basename-lgpl.h"
|
2013-11-26 22:53:19 +00:00
|
|
|
|
|
|
|
# ifndef DIRECTORY_SEPARATOR
|
|
|
|
# define DIRECTORY_SEPARATOR '/'
|
|
|
|
# endif
|
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2013-11-26 22:53:44 +00:00
|
|
|
|
2013-11-26 22:57:29 +00:00
|
|
|
# if GNULIB_DIRNAME
|
2023-10-18 07:29:37 +00:00
|
|
|
char *base_name (char const *file)
|
|
|
|
_GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE
|
|
|
|
_GL_ATTRIBUTE_RETURNS_NONNULL;
|
|
|
|
char *dir_name (char const *file)
|
|
|
|
_GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE
|
|
|
|
_GL_ATTRIBUTE_RETURNS_NONNULL;
|
2013-11-26 22:57:29 +00:00
|
|
|
# endif
|
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
char *mdir_name (char const *file)
|
|
|
|
_GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE;
|
2013-11-26 22:59:47 +00:00
|
|
|
size_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;
|
2013-11-26 22:53:19 +00:00
|
|
|
|
|
|
|
bool strip_trailing_slashes (char *file);
|
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
|
|
|
|
2013-11-26 22:53:19 +00:00
|
|
|
#endif /* not DIRNAME_H_ */
|