3 int main(int argc
, char **argv
)
6 for (i
= 2; i
< argc
; i
++) {
8 die("Forward slash is not allowed at the beginning of the\n"
9 "pattern because Windows does not like it. Use `XXX/' instead.");
10 else if (!strncmp(argv
[i
], "XXX/", 4))
13 if (!strcmp(argv
[1], "wildmatch"))
14 return !!wildmatch(argv
[3], argv
[2], WM_PATHNAME
, NULL
);
15 else if (!strcmp(argv
[1], "iwildmatch"))
16 return !!wildmatch(argv
[3], argv
[2], WM_PATHNAME
| WM_CASEFOLD
, NULL
);
17 else if (!strcmp(argv
[1], "pathmatch"))
18 return !!wildmatch(argv
[3], argv
[2], 0, NULL
);