projects
/
kopensolaris-gnu
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initial revision
[kopensolaris-gnu/glibc.git]
/
posix
/
testfnm.c
1
#include <stdio.h>
2
#include "fnmatch.h"
3
4
int
5
main (c, v)
6
int c;
7
char **v;
8
{
9
printf ("%d\n", fnmatch (v[1], v[2], FNM_PERIOD));
10
printf ("%d\n", fnmatch (v[1], v[2], FNM_CASEFOLD|FNM_PERIOD));
11
exit (0);
12
}