~ubuntu-branches/ubuntu/natty/diffutils/natty

« back to all changes in this revision

Viewing changes to lib/fnmatch.in.h

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2010-05-04 20:38:00 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100504203800-f67xd9rsa9xl9qqj
Tags: 1:3.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- buffer-read-only: t -*- vi: set ro: */
 
2
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
 
3
/* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
 
4
   2005, 2007, 2009, 2010 Free Software Foundation, Inc.
 
5
 
 
6
   This file is part of the GNU C Library.
 
7
 
 
8
   This program is free software; you can redistribute it and/or modify
 
9
   it under the terms of the GNU General Public License as published by
 
10
   the Free Software Foundation; either version 3, or (at your option)
 
11
   any later version.
 
12
 
 
13
   This program is distributed in the hope that it will be useful,
 
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
   GNU General Public License for more details.
 
17
 
 
18
   You should have received a copy of the GNU General Public License
 
19
   along with this program; if not, write to the Free Software Foundation,
 
20
   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
21
 
 
22
#ifndef _FNMATCH_H
 
23
#define _FNMATCH_H      1
 
24
 
 
25
/* The definition of _GL_ARG_NONNULL is copied here.  */
 
26
 
 
27
#ifdef __cplusplus
 
28
extern "C" {
 
29
#endif
 
30
 
 
31
/* We #undef these before defining them because some losing systems
 
32
   (HP-UX A.08.07 for example) define these in <unistd.h>.  */
 
33
#undef  FNM_PATHNAME
 
34
#undef  FNM_NOESCAPE
 
35
#undef  FNM_PERIOD
 
36
 
 
37
/* Bits set in the FLAGS argument to `fnmatch'.  */
 
38
#define FNM_PATHNAME    (1 << 0) /* No wildcard can ever match `/'.  */
 
39
#define FNM_NOESCAPE    (1 << 1) /* Backslashes don't quote special chars.  */
 
40
#define FNM_PERIOD      (1 << 2) /* Leading `.' is matched only explicitly.  */
 
41
 
 
42
#if !defined _POSIX_C_SOURCE || _POSIX_C_SOURCE < 2 || defined _GNU_SOURCE
 
43
# define FNM_FILE_NAME   FNM_PATHNAME   /* Preferred GNU name.  */
 
44
# define FNM_LEADING_DIR (1 << 3)       /* Ignore `/...' after a match.  */
 
45
# define FNM_CASEFOLD    (1 << 4)       /* Compare without regard to case.  */
 
46
# define FNM_EXTMATCH    (1 << 5)       /* Use ksh-like extended matching. */
 
47
#endif
 
48
 
 
49
/* Value returned by `fnmatch' if STRING does not match PATTERN.  */
 
50
#define FNM_NOMATCH     1
 
51
 
 
52
/* This value is returned if the implementation does not support
 
53
   `fnmatch'.  Since this is not the case here it will never be
 
54
   returned but the conformance test suites still require the symbol
 
55
   to be defined.  */
 
56
#ifdef _XOPEN_SOURCE
 
57
# define FNM_NOSYS      (-1)
 
58
#endif
 
59
 
 
60
/* Match NAME against the file name pattern PATTERN,
 
61
   returning zero if it matches, FNM_NOMATCH if not.  */
 
62
extern int fnmatch (const char *__pattern, const char *__name,
 
63
                    int __flags)
 
64
     _GL_ARG_NONNULL ((1, 2));
 
65
 
 
66
#ifdef __cplusplus
 
67
}
 
68
#endif
 
69
 
 
70
#endif /* fnmatch.h */