fnmatch(5)


fnmatch -- filename-matching utilities

Synopsis

#include <fnmatch.h>

Description

The fnmatch header declares the following constants:

FNM_NOSYS
The function is not supported by the implementation.
FNM_NOMATCH
The pattern specified does not correspond to the string
FNM_PATHNAME
A slash found in string only matches a slash in pattern
FNM_PERIOD
Leading period in pattern must exactly match a period in string
FNM_NOESCAPE
Disable backslash escaping

 
 FNM_NOSYS 
 FNM_NOMATCH 
 FNM_PATHNAME 
 FNM_PERIOD 
 FNM_NOESCAPE 
The following function is declared:

int fnmatch(const char *pattern, const char *string,int flags);


30 January 1998
© 1998 The Santa Cruz Operation, Inc. All rights reserved.