2020-12-16 20:26:16 +00:00
|
|
|
/*
|
|
|
|
* <fnmatch.h> - filename matching
|
|
|
|
*
|
|
|
|
* This header is a part of the FENIX C Library and is free software.
|
|
|
|
* You can redistribute and/or modify it subject to the terms of the
|
|
|
|
* Clumsy Wolf Public License v4. For more details, see the file COPYING.
|
|
|
|
*
|
|
|
|
* The FENIX C Library is distributed WITH NO WARRANTY WHATSOEVER. See
|
|
|
|
* The CWPL for more details.
|
|
|
|
*/
|
|
|
|
|
2020-12-08 22:22:10 +00:00
|
|
|
#ifndef _FNMATCH_H
|
|
|
|
#define _FNMATCH_H
|
|
|
|
|
2020-12-16 22:37:25 +00:00
|
|
|
#define FNM_NOMATCH 1
|
|
|
|
#define FNM_PATHNAME 2
|
|
|
|
#define FNM_PERIOD 3
|
|
|
|
#define FNM_NOESCAPE 4
|
2020-12-08 22:22:10 +00:00
|
|
|
|
|
|
|
int fnmatch(const char *, const char *, int);
|
|
|
|
|
|
|
|
#endif
|