diff options
| author | christos <christos@NetBSD.org> | 2016-01-13 03:15:29 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2016-01-13 03:15:29 +0000 |
| commit | eec8fc77c4e0eb79f8d0dce344cf1200ede12bfe (patch) | |
| tree | 0f84674d79cb0a0e6763dec26eb82850f961590f /external/gpl2/diffutils/dist/lib/exclude.h | |
| parent | ceb99fff3a910a1efe2f446026eaf8d0ed4086b2 (diff) | |
Import latest gpl2 diffutils
Diffstat (limited to 'external/gpl2/diffutils/dist/lib/exclude.h')
| -rw-r--r-- | external/gpl2/diffutils/dist/lib/exclude.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/external/gpl2/diffutils/dist/lib/exclude.h b/external/gpl2/diffutils/dist/lib/exclude.h new file mode 100644 index 00000000000..b652c6801be --- /dev/null +++ b/external/gpl2/diffutils/dist/lib/exclude.h @@ -0,0 +1,51 @@ +/* $NetBSD: exclude.h,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $ */ + +/* exclude.h -- declarations for excluding file names + Copyright 1992, 1993, 1994, 1997, 1999, 2001 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; see the file COPYING. + If not, write to the Free Software Foundation, + 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +/* Written by Paul Eggert <eggert@twinsun.com> */ + +#ifndef PARAMS +# if defined PROTOTYPES || (defined __STDC__ && __STDC__) +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif +#endif + +/* Exclude options, which can be ORed with fnmatch options. */ + +/* Patterns must match the start of file names, instead of matching + anywhere after a '/'. */ +#define EXCLUDE_ANCHORED (1 << 5) + +/* Include instead of exclude. */ +#define EXCLUDE_INCLUDE (1 << 6) + +/* '?', '*', '[', and '\\' are special in patterns. Without this + option, these characters are ordinary and fnmatch is not used. */ +#define EXCLUDE_WILDCARDS (1 << 7) + +struct exclude; + +struct exclude *new_exclude PARAMS ((void)); +void free_exclude PARAMS ((struct exclude *)); +void add_exclude PARAMS ((struct exclude *, char const *, int)); +int add_exclude_file PARAMS ((void (*) (struct exclude *, char const *, int), + struct exclude *, char const *, int, char)); +bool excluded_filename PARAMS ((struct exclude const *, char const *)); |
