#include "lib.h"
#include "string.h"
-int
-match_pattern_nocase(byte *p, byte *s)
-{
- while (*p)
- {
- if (*p == '?' && *s)
- p++, s++;
- else if (*p == '*')
- {
- int z = p[1];
+#define Convert(x) Cupcase(x)
+#define MATCH_FUNC_NAME match_pattern_nocase
- if (!z)
- return 1;
- while (s = strchr(s, z))
- {
- if (match_pattern_nocase(p+1, s))
- return 1;
- s++;
- }
- return 0;
- }
- else
- {
- if (*p == '\\' && p[1])
- p++;
- if (Cupcase(*p++) != Cupcase(*s++))
- return 0;
- }
- }
- return !*s;
-}
+#include "patmatch.h"
#include "lib.h"
-int
-match_pattern(byte *p, byte *s)
-{
- while (*p)
- {
- if (*p == '?' && *s)
- p++, s++;
- else if (*p == '*')
- {
- int z = p[1];
+#define Convert(x) (x)
+#define MATCH_FUNC_NAME match_pattern
- if (!z)
- return 1;
- while (s = strchr(s, z))
- {
- if (match_pattern(p+1, s))
- return 1;
- s++;
- }
- return 0;
- }
- else
- {
- if (*p == '\\' && p[1])
- p++;
- if (*p++ != *s++)
- return 0;
- }
- }
- return !*s;
-}
+#include "patmatch.h"
--- /dev/null
+/*
+ * Sherlock Library -- Generic Shell-Like Pattern Matching (currently only '?' and '*')
+ *
+ * (c) 1997 Martin Mares, <mj@atrey.karlin.mff.cuni.cz>
+ */
+
+int
+MATCH_FUNC_NAME(byte *p, byte *s)
+{
+ while (*p)
+ {
+ if (*p == '?' && *s)
+ p++, s++;
+ else if (*p == '*')
+ {
+ int z = p[1];
+
+ if (!z)
+ return 1;
+ if (z == '\\' && p[2])
+ z = p[2];
+ z = Convert(z);
+ while (*s)
+ {
+ while (*s && Convert(*s) != z)
+ s++;
+ if (*s && match_pattern(p+1, s))
+ return 1;
+ s++;
+ }
+ return 0;
+ }
+ else
+ {
+ if (*p == '\\' && p[1])
+ p++;
+ if (Convert(*p++) != Convert(*s++))
+ return 0;
+ }
+ }
+ return !*s;
+}