glob.h 217 B

123456789
  1. #ifndef _LINUX_GLOB_H
  2. #define _LINUX_GLOB_H
  3. #include <linux/types.h> /* For bool */
  4. #include <linux/compiler.h> /* For __pure */
  5. bool __pure glob_match(char const *pat, char const *str);
  6. #endif /* _LINUX_GLOB_H */