FNMATCH.H(7) Miscellaneous Information Manual FNMATCH.H(7)
NAME
fnmatch.h —
filename-matching types
SYNOPSIS
#include <fnmatch.h>
DESCRIPTION
The <fnmatch.h> header defines the
flags and return value used by the fnmatch(3) function.
The following constants are defined:
- FNM_NOMATCH
- The string does not match the specified pattern.
- FNM_PATHNAME
- Slash in string only matches slash in pattern .
- FNM_PERIOD
- Leading period in string must be exactly matched by period in pattern .
- FNM_NOESCAPE
- Disable backslash escaping.
- FNM_NOSYS
- The implementation does not support this function.
The following is declared as a function and may also be declared
as a macro. Function prototypes must be provided for use with an ISO C
compiler. int fnmatch(const char *, const char *,
int);
APPLICATION USAGE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
fnmatch(3) , the XCU specification.
February 1997 posix.fail