describe ap (Kirk); delete lfs_mntinvalbuf, lfs_vinvalbuf, add
[unix-history] / usr / src / include / fnmatch.h
/*-
* Copyright (c) 1992 The Regents of the University of California.
* All rights reserved.
*
* %sccs.include.redist.c%
*
* @(#)fnmatch.h 5.2 (Berkeley) %G%
*/
#ifndef _FNMATCH_H_
#define _FNMATCH_H_
#define FNM_NOMATCH 1 /* Match failed. */
#define FNM_NOESCAPE 0x01 /* Disable backslash escaping. */
#define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
#define FNM_PERIOD 0x04 /* Period must be matched by period. */
#include <sys/cdefs.h>
__BEGIN_DECLS
#ifndef _POSIX_SOURCE
int fnmatch __P((const char *, const char *, int));
#endif
__END_DECLS
#endif /* !_FNMATCH_H_ */