summaryrefslogtreecommitdiff
path: root/pathexp.h
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2005-12-07 14:08:12 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:57 +0000
commit95732b497d12c98613bb3c5db16b61f377501a59 (patch)
tree5e1cdf79eb0407e09dca4c0ec29e11442c7d1d15 /pathexp.h
parenteb87367179effbe5f430236db8259006d71438b7 (diff)
downloadbash-95732b497d12c98613bb3c5db16b61f377501a59.tar.gz
Imported from ../bash-3.1.tar.gz.
Diffstat (limited to 'pathexp.h')
-rw-r--r--pathexp.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/pathexp.h b/pathexp.h
index 6c41ebae..5f1731ad 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 *));