1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun #ifndef _LINUX_GLOB_H 3*4882a593Smuzhiyun #define _LINUX_GLOB_H 4*4882a593Smuzhiyun 5*4882a593Smuzhiyun #include <linux/types.h> /* For bool */ 6*4882a593Smuzhiyun #include <linux/compiler.h> /* For __pure */ 7*4882a593Smuzhiyun 8*4882a593Smuzhiyun bool __pure glob_match(char const *pat, char const *str); 9*4882a593Smuzhiyun 10*4882a593Smuzhiyun #endif /* _LINUX_GLOB_H */ 11