repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update from main archive 961217
[glibc.git]
/
posix
/
testfnm.c
blob
3b3aa9730f76251d88519237d309cd17fdfe8efc
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
}