2023-04-28 21:21:08 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2023-05-13 16:10:33 +03:00
|
|
|
#ifndef LABWC_MATCH_H
|
|
|
|
|
#define LABWC_MATCH_H
|
2023-10-01 14:39:47 +03:00
|
|
|
|
2023-08-28 18:56:39 +03:00
|
|
|
#include <stdbool.h>
|
2023-04-28 21:21:08 +01:00
|
|
|
|
|
|
|
|
/**
|
2024-12-01 16:35:57 +00:00
|
|
|
* match_glob() - Pattern match using shell wildcard rules (see glob(7))
|
2023-04-28 21:21:08 +01:00
|
|
|
* @pattern: Pattern to match against.
|
|
|
|
|
* @string: String to search.
|
|
|
|
|
* Note: Comparison case-insensitive.
|
|
|
|
|
*/
|
2023-10-01 14:39:47 +03:00
|
|
|
bool match_glob(const char *pattern, const char *string);
|
2023-04-28 21:21:08 +01:00
|
|
|
|
2023-05-13 16:10:33 +03:00
|
|
|
#endif /* LABWC_MATCH_H */
|