Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/glob_pattern_p.cc')
-rw-r--r--winsup/cygwin/glob_pattern_p.cc28
1 files changed, 0 insertions, 28 deletions
diff --git a/winsup/cygwin/glob_pattern_p.cc b/winsup/cygwin/glob_pattern_p.cc
deleted file mode 100644
index e8f42519b..000000000
--- a/winsup/cygwin/glob_pattern_p.cc
+++ /dev/null
@@ -1,28 +0,0 @@
-/* glob_pattern_p.c
-
- int glob_pattern_p (__const char *__pattern, int __quote)
-
- Return nonzero if PATTERN contains any metacharacters.
- Metacharacters can be quoted with backslashes if QUOTE is nonzero.
-
- This function is not part of the interface specified by POSIX.2
- but several programs want to use it. */
-
-#include <string.h>
-
-extern "C" {
-
-int glob_pattern_p (const char *pattern, int quote)
-{
- const char *quote_chars = "\\?*[]";
- if (!quote)
- quote_chars++;
- while ((pattern = strpbrk (pattern, quote_chars)) != NULL)
- if (*pattern == '\\')
- pattern++;
- else
- return true;
- return false;
-}
-
-} /* extern "C" */