X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fexclude.h;h=65d312876306347d567b6cb2fcbff2c485727d97;hb=497bb5fc57d14e07115482157ed318d078a83083;hp=203e38485d37914a793807ceb35ffae3e6af4375;hpb=d9e80c64c98313550d5103d8cfb22601a800e62d;p=gnulib.git diff --git a/lib/exclude.h b/lib/exclude.h index 203e38485..65d312876 100644 --- a/lib/exclude.h +++ b/lib/exclude.h @@ -1,12 +1,12 @@ /* exclude.h -- declarations for excluding file names - Copyright (C) 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005, - 2006 Free Software Foundation, Inc. + Copyright (C) 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005, 2006, + 2009, 2010 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + 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. + the Free Software Foundation; either version 3 of the License, 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 @@ -14,11 +14,15 @@ 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, - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ -/* Written by Paul Eggert */ +#ifndef _GL_EXCLUDE_H +#define _GL_EXCLUDE_H 1 + +#include + +/* Written by Paul Eggert + and Sergey Poznyakoff */ /* Exclude options, which can be ORed with fnmatch options. */ @@ -35,10 +39,14 @@ struct exclude; +bool fnmatch_pattern_has_wildcards (const char *, int); + struct exclude *new_exclude (void); void free_exclude (struct exclude *); void add_exclude (struct exclude *, char const *, int); int add_exclude_file (void (*) (struct exclude *, char const *, int), - struct exclude *, char const *, int, char); + struct exclude *, char const *, int, char); bool excluded_file_name (struct exclude const *, char const *); bool exclude_fnmatch (char const *pattern, char const *f, int options); + +#endif /* _GL_EXCLUDE_H */