test-wildmatch.con commit Merge branch 'js/test-hashmap-squelch-gcc' (6d43519)
   1#include "cache.h"
   2
   3int main(int argc, char **argv)
   4{
   5        int i;
   6        for (i = 2; i < argc; i++) {
   7                if (argv[i][0] == '/')
   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))
  11                        argv[i] += 3;
  12        }
  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);
  19        else
  20                return 1;
  21}