X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=pathexp.h;h=5f1731ad99b3b9a2d811d867a373f3e3d70b8ea3;hb=95732b497d12c98613bb3c5db16b61f377501a59;hp=6c41ebae69a0dc3580ae3a69c26b0365e745bf7e;hpb=f73dda092b33638d2d5e9c35375f687a607b5403;p=platform%2Fupstream%2Fbash.git diff --git a/pathexp.h b/pathexp.h index 6c41eba..5f1731a 100644 --- a/pathexp.h +++ b/pathexp.h @@ -1,6 +1,6 @@ /* pathexp.h -- The shell interface to the globbing library. */ -/* Copyright (C) 1987,1989 Free Software Foundation, Inc. +/* Copyright (C) 1987-2005 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell. @@ -41,8 +41,11 @@ extern char *glob_error_return; # define FNMATCH_EXTFLAG 0 #endif /* !EXTENDED_GLOB */ +#define FNMATCH_IGNCASE (match_ignore_case ? FNM_CASEFOLD : 0) + extern int glob_dot_filenames; extern int extended_glob; +extern int match_ignore_case; /* doesn't really belong here */ extern int unquoted_glob_pattern_p __P((char *));