]> git.ipfire.org Git - thirdparty/glibc.git/blob - posix/testfnm.c
update from main archive 961005
[thirdparty/glibc.git] / posix / testfnm.c
1 #include <stdio.h>
2 #include "fnmatch.h"
3
4 int
5 main (int c, char *v[])
6 {
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);
10 }