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