xref: /linux-6.15/include/linux/glob.h (revision b2441318)
1*b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
2b0125085SGeorge Spelvin #ifndef _LINUX_GLOB_H
3b0125085SGeorge Spelvin #define _LINUX_GLOB_H
4b0125085SGeorge Spelvin 
5b0125085SGeorge Spelvin #include <linux/types.h>	/* For bool */
6b0125085SGeorge Spelvin #include <linux/compiler.h>	/* For __pure */
7b0125085SGeorge Spelvin 
8b0125085SGeorge Spelvin bool __pure glob_match(char const *pat, char const *str);
9b0125085SGeorge Spelvin 
10b0125085SGeorge Spelvin #endif	/* _LINUX_GLOB_H */
11