Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include
File: fnmatch.h
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
#ifndef _FNMATCH_H
[17] Fix | Delete
#define _FNMATCH_H 1
[18] Fix | Delete
[19] Fix | Delete
#ifdef __cplusplus
[20] Fix | Delete
extern "C" {
[21] Fix | Delete
#endif
[22] Fix | Delete
[23] Fix | Delete
/* We #undef these before defining them because some losing systems
[24] Fix | Delete
(HP-UX A.08.07 for example) define these in <unistd.h>. */
[25] Fix | Delete
#undef FNM_PATHNAME
[26] Fix | Delete
#undef FNM_NOESCAPE
[27] Fix | Delete
#undef FNM_PERIOD
[28] Fix | Delete
[29] Fix | Delete
/* Bits set in the FLAGS argument to `fnmatch'. */
[30] Fix | Delete
#define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */
[31] Fix | Delete
#define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars. */
[32] Fix | Delete
#define FNM_PERIOD (1 << 2) /* Leading `.' is matched only explicitly. */
[33] Fix | Delete
[34] Fix | Delete
#if !defined _POSIX_C_SOURCE || _POSIX_C_SOURCE < 2 || defined _GNU_SOURCE
[35] Fix | Delete
# define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
[36] Fix | Delete
# define FNM_LEADING_DIR (1 << 3) /* Ignore `/...' after a match. */
[37] Fix | Delete
# define FNM_CASEFOLD (1 << 4) /* Compare without regard to case. */
[38] Fix | Delete
# define FNM_EXTMATCH (1 << 5) /* Use ksh-like extended matching. */
[39] Fix | Delete
#endif
[40] Fix | Delete
[41] Fix | Delete
/* Value returned by `fnmatch' if STRING does not match PATTERN. */
[42] Fix | Delete
#define FNM_NOMATCH 1
[43] Fix | Delete
[44] Fix | Delete
/* This value is returned if the implementation does not support
[45] Fix | Delete
`fnmatch'. Since this is not the case here it will never be
[46] Fix | Delete
returned but the conformance test suites still require the symbol
[47] Fix | Delete
to be defined. */
[48] Fix | Delete
#ifdef _XOPEN_SOURCE
[49] Fix | Delete
# define FNM_NOSYS (-1)
[50] Fix | Delete
#endif
[51] Fix | Delete
[52] Fix | Delete
/* Match NAME against the filename pattern PATTERN,
[53] Fix | Delete
returning zero if it matches, FNM_NOMATCH if not. */
[54] Fix | Delete
extern int fnmatch (const char *__pattern, const char *__name, int __flags);
[55] Fix | Delete
[56] Fix | Delete
#ifdef __cplusplus
[57] Fix | Delete
}
[58] Fix | Delete
#endif
[59] Fix | Delete
[60] Fix | Delete
#endif /* fnmatch.h */
[61] Fix | Delete
[62] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function