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
main (c, v)
5
int c;
6
char **v;
7
{
8
printf ("%d\n", fnmatch (v[1], v[2], FNM_PERIOD));
9
printf ("%d\n", fnmatch (v[1], v[2], FNM_CASEFOLD|FNM_PERIOD));
10
exit (0);
11
}