]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/glob-util.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / basic / glob-util.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
7d50b32a
LP
2#pragma once
3
4/***
5 This file is part of systemd.
6
7 Copyright 2010 Lennart Poettering
8
9 systemd is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
13
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
21***/
22
48d7c648 23#include <glob.h>
11c3a366 24#include <stdbool.h>
7d50b32a
LP
25#include <string.h>
26
27#include "macro.h"
b11d6a7b 28#include "string-util.h"
7d50b32a 29
48d7c648
ZJS
30/* Note: this function modifies pglob to set various functions. */
31int safe_glob(const char *path, int flags, glob_t *pglob);
32
7d50b32a
LP
33int glob_exists(const char *path);
34int glob_extend(char ***strv, const char *path);
35
36#define _cleanup_globfree_ _cleanup_(globfree)
37
38_pure_ static inline bool string_is_glob(const char *p) {
39 /* Check if a string contains any glob patterns. */
40 return !!strpbrk(p, GLOB_CHARS);
41}