Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/tests/fnmatch.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1297 - (show annotations) (download)
Fri May 27 15:12:11 2011 UTC (12 years, 11 months ago) by niro
File MIME type: text/plain
File size: 255 byte(s)
-updated to klibc-1.5.22 with mntproc definitions patch included
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <fnmatch.h>
4
5 int main(int argc, char *argv[])
6 {
7 int flags = atoi(argv[3]);
8 int match = fnmatch(argv[1], argv[2], flags);
9
10 printf("\"%s\" matches \"%s\": %d\n", argv[1], argv[2], match);
11
12 return match;
13 }