update from main archive 961016
[glibc.git] / posix / testfnm.c
blob3b3aa9730f76251d88519237d309cd17fdfe8efc
1 #include <stdio.h>
2 #include "fnmatch.h"
4 int
5 main (int c, char *v[])
7 printf ("%d\n", fnmatch (v[1], v[2], FNM_PERIOD));
8 printf ("%d\n", fnmatch (v[1], v[2], FNM_CASEFOLD|FNM_PERIOD));
9 exit (0);