2N/A/* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
2N/A 2005, 2007, 2009, 2010 Free Software Foundation, Inc.
2N/A
2N/A This file is part of the GNU C Library.
2N/A
2N/A This program is free software; you can redistribute it and/or modify
2N/A it under the terms of the GNU General Public License as published by
2N/A the Free Software Foundation; either version 3, or (at your option)
2N/A any later version.
2N/A
2N/A This program is distributed in the hope that it will be useful,
2N/A but WITHOUT ANY WARRANTY; without even the implied warranty of
2N/A MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2N/A GNU General Public License for more details.
2N/A
2N/A You should have received a copy of the GNU General Public License
2N/A along with this program; if not, write to the Free Software Foundation,
2N/A Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
2N/A
2N/A#ifndef _FNMATCH_H
2N/A#define _FNMATCH_H 1
2N/A
2N/A/* The definition of _GL_ARG_NONNULL is copied here. */
2N/A
2N/A#ifdef __cplusplus
2N/Aextern "C" {
2N/A#endif
2N/A
2N/A/* We #undef these before defining them because some losing systems
2N/A (HP-UX A.08.07 for example) define these in <unistd.h>. */
2N/A#undef FNM_PATHNAME
2N/A#undef FNM_NOESCAPE
2N/A#undef FNM_PERIOD
2N/A
2N/A/* Bits set in the FLAGS argument to `fnmatch'. */
2N/A#define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */
2N/A#define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars. */
2N/A#define FNM_PERIOD (1 << 2) /* Leading `.' is matched only explicitly. */
2N/A
2N/A#if !defined _POSIX_C_SOURCE || _POSIX_C_SOURCE < 2 || defined _GNU_SOURCE
2N/A# define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
2N/A# define FNM_LEADING_DIR (1 << 3) /* Ignore `/...' after a match. */
2N/A# define FNM_CASEFOLD (1 << 4) /* Compare without regard to case. */
2N/A# define FNM_EXTMATCH (1 << 5) /* Use ksh-like extended matching. */
2N/A#endif
2N/A
2N/A/* Value returned by `fnmatch' if STRING does not match PATTERN. */
2N/A#define FNM_NOMATCH 1
2N/A
2N/A/* This value is returned if the implementation does not support
2N/A `fnmatch'. Since this is not the case here it will never be
2N/A returned but the conformance test suites still require the symbol
2N/A to be defined. */
2N/A#ifdef _XOPEN_SOURCE
2N/A# define FNM_NOSYS (-1)
2N/A#endif
2N/A
2N/A/* Match NAME against the file name pattern PATTERN,
2N/A returning zero if it matches, FNM_NOMATCH if not. */
2N/Aextern int fnmatch (const char *__pattern, const char *__name,
2N/A int __flags)
2N/A _GL_ARG_NONNULL ((1, 2));
2N/A
2N/A#ifdef __cplusplus
2N/A}
2N/A#endif
2N/A
2N/A#endif /* fnmatch.h */