Expand description
fnmatch.h implementation.
See https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/fnmatch.h.html.
Constants§
- FNM_
CASEFOLD - Compare input string and pattern in a case-insensitive manner.
- FNM_
IGNORECASE - Equivalent to
FNM_CASEFOLD. - FNM_
NOESCAPE - Disable backslash escaping.
- FNM_
NOMATCH - The input string does not match the specified pattern.
- FNM_
PATHNAME - Backslash in the input string only matches backlash in pattern.
- FNM_
PERIOD - Leading period in input string only matches period in pattern.