1 /* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
3 This library is free software; you can redistribute it and/or
4 modify it under the terms of the GNU Library General Public License as
5 published by the Free Software Foundation; either version 2 of the
6 License, or (at your option) any later version.
8 This library is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 Library General Public License for more details.
13 You should have received a copy of the GNU Library General Public
14 License along with this library; see the file COPYING.LIB. If not,
15 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 Boston, MA 02111-1307, USA. */
18 /* AIX requires this to be the first thing in the file. */
19 #if defined _AIX && !defined __GNUC__
27 /* Enable GNU extensions in glob.h. */
29 # define _GNU_SOURCE 1
33 #include <sys/types.h>
36 /* Outcomment the following line for production quality code. */
37 /* #define NDEBUG 1 */
40 #include <stdio.h> /* Needed on stupid SunOS for assert. */
43 /* Comment out all this code if we are using the GNU C Library, and are not
44 actually compiling the library itself. This code is part of the GNU C
45 Library, but also included in many other GNU distributions. Compiling
46 and linking in this code is a waste when using the GNU C library
47 (especially if it is a shared library). Rather than having every GNU
48 program understand `configure --with-gnu-libc' and omit the object files,
49 it is simpler to just do this in the source for each such file. */
51 #define GLOB_INTERFACE_VERSION 1
52 #if !defined _LIBC && defined __GNU_LIBRARY__ && __GNU_LIBRARY__ > 1
53 # include <gnu-versions.h>
54 # if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION
61 #if defined STDC_HEADERS || defined __GNU_LIBRARY__
65 #if defined HAVE_UNISTD_H || defined _LIBC
68 # ifdef _POSIX_VERSION
74 #if !defined _AMIGA && !defined VMS && !defined WINDOWS32
78 #if !defined __GNU_LIBRARY__ && !defined STDC_HEADERS
82 # define __set_errno(val) errno = (val)
90 #if defined HAVE_DIRENT_H || defined __GNU_LIBRARY__
92 # define NAMLEN(dirent) strlen((dirent)->d_name)
94 # define dirent direct
95 # define NAMLEN(dirent) (dirent)->d_namlen
96 # ifdef HAVE_SYS_NDIR_H
97 # include <sys/ndir.h>
99 # ifdef HAVE_SYS_DIR_H
100 # include <sys/dir.h>
105 # ifdef HAVE_VMSDIR_H
107 # endif /* HAVE_VMSDIR_H */
111 /* In GNU systems, <dirent.h> defines this macro for us. */
114 # define NAMLEN(d) _D_NAMLEN(d)
117 /* When used in the GNU libc the symbol _DIRENT_HAVE_D_TYPE is available
118 if the `d_type' member for `struct dirent' is available. */
119 #ifdef _DIRENT_HAVE_D_TYPE
120 # define HAVE_D_TYPE 1
124 #if (defined POSIX || defined WINDOWS32) && !defined __GNU_LIBRARY__
125 /* Posix does not require that the d_ino field be present, and some
126 systems do not provide it. */
127 # define REAL_DIR_ENTRY(dp) 1
129 # define REAL_DIR_ENTRY(dp) (dp->d_ino != 0)
132 #if defined STDC_HEADERS || defined __GNU_LIBRARY__
136 #else /* No standard headers. */
138 extern char *getenv ();
140 # ifdef HAVE_STRING_H
144 # include <strings.h>
146 # ifdef HAVE_MEMORY_H
150 extern char *malloc (), *realloc ();
153 extern void qsort ();
154 extern void abort (), exit ();
156 #endif /* Standard headers. */
161 extern void bzero ();
164 extern void bcopy ();
167 # define memcpy(d, s, n) bcopy ((s), (d), (n))
168 # define strrchr rindex
169 /* memset is only used for zero here, but let's be paranoid. */
170 # define memset(s, better_be_zero, n) \
171 ((void) ((better_be_zero) == 0 ? (bzero((s), (n)), 0) : (abort(), 0)))
172 #endif /* Not ANSI_STRING. */
174 #if !defined HAVE_STRCOLL && !defined _LIBC
175 # define strcoll strcmp
178 #if !defined HAVE_MEMPCPY && __GLIBC__ - 0 == 2 && __GLIBC_MINOR__ >= 1
179 # define HAVE_MEMPCPY 1
180 # define mempcpy(Dest, Src, Len) __mempcpy (Dest, Src, Len)
184 #ifndef __GNU_LIBRARY__
198 /* These casts are the for sake of the broken Ultrix compiler,
199 which warns of illegal pointer combinations otherwise. */
201 return (char *) malloc (n
);
202 return (char *) realloc (p
, n
);
204 # define realloc my_realloc
206 #endif /* __GNU_LIBRARY__ */
209 #if !defined __alloca && !defined __GNU_LIBRARY__
213 # define alloca(n) __builtin_alloca (n)
214 # else /* Not GCC. */
215 # ifdef HAVE_ALLOCA_H
217 # else /* Not HAVE_ALLOCA_H. */
222 extern char *alloca ();
223 # endif /* WINDOWS32 */
224 # endif /* Not _AIX. */
225 # endif /* sparc or HAVE_ALLOCA_H. */
228 # define __alloca alloca
232 #ifndef __GNU_LIBRARY__
234 # ifdef STAT_MACROS_BROKEN
238 # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
242 #if !(defined STDC_HEADERS || defined __GNU_LIBRARY__)
244 # define size_t unsigned int
247 /* Some system header files erroneously define these.
248 We want our own definitions from <fnmatch.h> to take precedence. */
254 /* Some system header files erroneously define these.
255 We want our own definitions from <glob.h> to take precedence. */
267 #if __GNUC__ - 0 >= 2
270 const char *next_brace_sub
__P ((const char *begin
));
271 static int glob_in_dir
__P ((const char *pattern
, const char *directory
,
273 int (*errfunc
) __P ((const char *, int)),
275 static int prefix_array
__P ((const char *prefix
, char **array
, size_t n
));
276 static int collated_compare
__P ((const __ptr_t
, const __ptr_t
));
279 /* Find the end of the sub-pattern in a brace expression. We define
280 this as an inline function if the compiler permits. */
282 #if __GNUC__ - 0 >= 2
286 next_brace_sub (begin
)
289 unsigned int depth
= 0;
290 const char *cp
= begin
;
296 if (*cp
!= ',' && *cp
!= '}' && *cp
!= '\0')
306 while (*cp
!= '\0' && (*cp
!= '}' || depth
> 0))
313 /* An incorrectly terminated brace expression. */
324 /* Do glob searching for PATTERN, placing results in PGLOB.
325 The bits defined above may be set in FLAGS.
326 If a directory cannot be opened or read and ERRFUNC is not nil,
327 it is called with the pathname that caused the error, and the
328 `errno' value from the failing call; if it returns non-zero
329 `glob' returns GLOB_ABORTED; if it returns zero, the error is ignored.
330 If memory cannot be allocated for PGLOB, GLOB_NOSPACE is returned.
331 Otherwise, `glob' returns zero. */
333 glob (pattern
, flags
, errfunc
, pglob
)
336 int (*errfunc
) __P ((const char *, int));
339 const char *filename
;
345 if (pattern
== NULL
|| pglob
== NULL
|| (flags
& ~__GLOB_FLAGS
) != 0)
347 __set_errno (EINVAL
);
351 if (flags
& GLOB_BRACE
)
353 const char *begin
= strchr (pattern
, '{');
356 /* Allocate working buffer large enough for our work. Note that
357 we have at least an opening and closing brace. */
365 char onealt
[strlen (pattern
) - 1];
367 char *onealt
= (char *) malloc (strlen (pattern
) - 1);
370 if (!(flags
& GLOB_APPEND
))
376 /* We know the prefix for all sub-patterns. */
378 alt_start
= mempcpy (onealt
, pattern
, begin
- pattern
);
380 memcpy (onealt
, pattern
, begin
- pattern
);
381 alt_start
= &onealt
[begin
- pattern
];
384 /* Find the first sub-pattern and at the same time find the
385 rest after the closing brace. */
386 next
= next_brace_sub (begin
+ 1);
389 /* It is an illegal expression. */
393 return glob (pattern
, flags
& ~GLOB_BRACE
, errfunc
, pglob
);
396 /* Now find the end of the whole brace expression. */
400 rest
= next_brace_sub (rest
+ 1);
403 /* It is an illegal expression. */
407 return glob (pattern
, flags
& ~GLOB_BRACE
, errfunc
, pglob
);
410 /* Please note that we now can be sure the brace expression
412 rest_len
= strlen (++rest
) + 1;
414 /* We have a brace expression. BEGIN points to the opening {,
415 NEXT points past the terminator of the first element, and END
416 points past the final }. We will accumulate result names from
417 recursive runs for each brace alternative in the buffer using
420 if (!(flags
& GLOB_APPEND
))
422 /* This call is to set a new vector, so clear out the
423 vector so we can append to it. */
425 pglob
->gl_pathv
= NULL
;
427 firstc
= pglob
->gl_pathc
;
434 /* Construct the new glob expression. */
436 mempcpy (mempcpy (alt_start
, p
, next
- p
), rest
, rest_len
);
438 memcpy (alt_start
, p
, next
- p
);
439 memcpy (&alt_start
[next
- p
], rest
, rest_len
);
442 result
= glob (onealt
,
443 ((flags
& ~(GLOB_NOCHECK
|GLOB_NOMAGIC
))
444 | GLOB_APPEND
), errfunc
, pglob
);
446 /* If we got an error, return it. */
447 if (result
&& result
!= GLOB_NOMATCH
)
452 if (!(flags
& GLOB_APPEND
))
458 /* We saw the last entry. */
462 next
= next_brace_sub (p
);
463 assert (next
!= NULL
);
470 if (pglob
->gl_pathc
!= firstc
)
471 /* We found some entries. */
473 else if (!(flags
& (GLOB_NOCHECK
|GLOB_NOMAGIC
)))
478 /* Find the filename. */
479 filename
= strrchr (pattern
, '/');
480 if (filename
== NULL
)
484 dirname
= (char *) "";
486 dirname
= (char *) ".";
490 else if (filename
== pattern
)
493 dirname
= (char *) "/";
499 dirlen
= filename
- pattern
;
500 dirname
= (char *) __alloca (dirlen
+ 1);
502 *((char *) mempcpy (dirname
, pattern
, dirlen
)) = '\0';
504 memcpy (dirname
, pattern
, dirlen
);
505 dirname
[dirlen
] = '\0';
510 if (filename
[0] == '\0' && dirlen
> 1)
511 /* "pattern/". Expand "pattern", appending slashes. */
513 int val
= glob (dirname
, flags
| GLOB_MARK
, errfunc
, pglob
);
515 pglob
->gl_flags
= (pglob
->gl_flags
& ~GLOB_MARK
) | (flags
& GLOB_MARK
);
519 if (!(flags
& GLOB_APPEND
))
522 pglob
->gl_pathv
= NULL
;
525 oldcount
= pglob
->gl_pathc
;
528 if ((flags
& GLOB_TILDE
) && dirname
[0] == '~')
530 if (dirname
[1] == '\0' || dirname
[1] == '/')
532 /* Look up home directory. */
533 char *home_dir
= getenv ("HOME");
535 if (home_dir
== NULL
|| home_dir
[0] == '\0')
539 if (home_dir
== NULL
|| home_dir
[0] == '\0')
540 home_dir
= "c:/users/default"; /* poor default */
542 if (home_dir
== NULL
|| home_dir
[0] == '\0')
545 # if defined HAVE_GETLOGIN_R || defined _LIBC
546 extern int getlogin_r
__P ((char *, size_t));
547 size_t buflen
= sysconf (_SC_LOGIN_NAME_MAX
) + 1;
551 /* `sysconf' does not support _SC_LOGIN_NAME_MAX. Try
554 name
= (char *) __alloca (buflen
);
556 success
= getlogin_r (name
, buflen
) >= 0;
558 extern char *getlogin
__P ((void));
561 success
= (name
= getlogin ()) != NULL
;
565 # if defined HAVE_GETPWNAM_R || defined _LIBC
566 size_t pwbuflen
= sysconf (_SC_GETPW_R_SIZE_MAX
);
568 struct passwd pwbuf
, *p
;
570 pwtmpbuf
= (char *) __alloca (pwbuflen
);
572 success
= (__getpwnam_r (name
, &pwbuf
, pwtmpbuf
,
575 struct passwd
*p
= getpwnam (name
);
579 home_dir
= p
->pw_dir
;
582 if (home_dir
== NULL
|| home_dir
[0] == '\0')
583 home_dir
= (char *) "~"; /* No luck. */
584 # endif /* WINDOWS32 */
586 /* Now construct the full directory. */
587 if (dirname
[1] == '\0')
592 size_t home_len
= strlen (home_dir
);
593 newp
= (char *) __alloca (home_len
+ dirlen
);
595 mempcpy (mempcpy (newp
, home_dir
, home_len
),
596 &dirname
[1], dirlen
);
598 memcpy (newp
, home_dir
, home_len
);
599 memcpy (&newp
[home_len
], &dirname
[1], dirlen
);
604 # if !defined _AMIGA && !defined WINDOWS32
607 char *end_name
= strchr (dirname
, '/');
611 if (end_name
== NULL
)
612 user_name
= dirname
+ 1;
615 user_name
= (char *) __alloca (end_name
- dirname
);
617 *((char *) mempcpy (user_name
, dirname
+ 1, end_name
- dirname
))
620 memcpy (user_name
, dirname
+ 1, end_name
- dirname
);
621 user_name
[end_name
- dirname
- 1] = '\0';
625 /* Look up specific user's home directory. */
627 # if defined HAVE_GETPWNAM_R || defined _LIBC
628 size_t buflen
= sysconf (_SC_GETPW_R_SIZE_MAX
);
629 char *pwtmpbuf
= (char *) __alloca (buflen
);
630 struct passwd pwbuf
, *p
;
631 if (__getpwnam_r (user_name
, &pwbuf
, pwtmpbuf
, buflen
, &p
) >= 0)
632 home_dir
= p
->pw_dir
;
636 struct passwd
*p
= getpwnam (user_name
);
638 home_dir
= p
->pw_dir
;
643 /* If we found a home directory use this. */
644 if (home_dir
!= NULL
)
647 size_t home_len
= strlen (home_dir
);
648 size_t rest_len
= end_name
== NULL
? 0 : strlen (end_name
);
649 newp
= (char *) __alloca (home_len
+ rest_len
+ 1);
651 *((char *) mempcpy (mempcpy (newp
, home_dir
, home_len
),
652 end_name
, rest_len
)) = '\0';
654 memcpy (newp
, home_dir
, home_len
);
655 memcpy (&newp
[home_len
], end_name
, rest_len
);
656 newp
[home_len
+ rest_len
] = '\0';
661 # endif /* Not Amiga && not WINDOWS32. */
663 #endif /* Not VMS. */
665 if (__glob_pattern_p (dirname
, !(flags
& GLOB_NOESCAPE
)))
667 /* The directory name contains metacharacters, so we
668 have to glob for the directory, and then glob for
669 the pattern in each directory found. */
673 status
= glob (dirname
,
674 ((flags
& (GLOB_ERR
| GLOB_NOCHECK
| GLOB_NOESCAPE
))
675 | GLOB_NOSORT
| GLOB_ONLYDIR
),
680 /* We have successfully globbed the preceding directory name.
681 For each name we found, call glob_in_dir on it and FILENAME,
682 appending the results to PGLOB. */
683 for (i
= 0; i
< dirs
.gl_pathc
; ++i
)
689 /* Make globbing interruptible in the bash shell. */
690 extern int interrupt_state
;
701 oldcount
= pglob
->gl_pathc
;
702 status
= glob_in_dir (filename
, dirs
.gl_pathv
[i
],
703 ((flags
| GLOB_APPEND
)
704 & ~(GLOB_NOCHECK
| GLOB_ERR
)),
706 if (status
== GLOB_NOMATCH
)
707 /* No matches in this directory. Try the next. */
717 /* Stick the directory on the front of each name. */
718 if (prefix_array (dirs
.gl_pathv
[i
],
719 &pglob
->gl_pathv
[oldcount
],
720 pglob
->gl_pathc
- oldcount
))
728 flags
|= GLOB_MAGCHAR
;
730 if (pglob
->gl_pathc
== oldcount
)
732 if (flags
& GLOB_NOCHECK
)
734 size_t len
= strlen (pattern
) + 1;
735 char *patcopy
= (char *) malloc (len
);
738 memcpy (patcopy
, pattern
, len
);
741 = (char **) realloc (pglob
->gl_pathv
,
743 ((flags
& GLOB_DOOFFS
) ?
744 pglob
->gl_offs
: 0) +
747 if (pglob
->gl_pathv
== NULL
)
753 if (flags
& GLOB_DOOFFS
)
754 while (pglob
->gl_pathc
< pglob
->gl_offs
)
755 pglob
->gl_pathv
[pglob
->gl_pathc
++] = NULL
;
757 pglob
->gl_pathv
[pglob
->gl_pathc
++] = patcopy
;
758 pglob
->gl_pathv
[pglob
->gl_pathc
] = NULL
;
759 pglob
->gl_flags
= flags
;
766 status
= glob_in_dir (filename
, dirname
, flags
, errfunc
, pglob
);
772 /* Stick the directory on the front of each name. */
773 if (prefix_array (dirname
,
774 &pglob
->gl_pathv
[oldcount
],
775 pglob
->gl_pathc
- oldcount
))
783 if (flags
& GLOB_MARK
)
785 /* Append slashes to directory names. */
788 for (i
= oldcount
; i
< pglob
->gl_pathc
; ++i
)
789 if (((flags
& GLOB_ALTDIRFUNC
) ?
790 (*pglob
->gl_stat
) (pglob
->gl_pathv
[i
], &st
) :
791 __stat (pglob
->gl_pathv
[i
], &st
)) == 0 &&
792 S_ISDIR (st
.st_mode
))
794 size_t len
= strlen (pglob
->gl_pathv
[i
]) + 2;
795 char *new = realloc (pglob
->gl_pathv
[i
], len
);
801 strcpy (&new[len
- 2], "/");
802 pglob
->gl_pathv
[i
] = new;
806 if (!(flags
& GLOB_NOSORT
))
807 /* Sort the vector. */
808 qsort ((__ptr_t
) &pglob
->gl_pathv
[oldcount
],
809 pglob
->gl_pathc
- oldcount
,
810 sizeof (char *), collated_compare
);
816 /* Free storage allocated in PGLOB by a previous `glob' call. */
819 register glob_t
*pglob
;
821 if (pglob
->gl_pathv
!= NULL
)
824 for (i
= 0; i
< pglob
->gl_pathc
; ++i
)
825 if (pglob
->gl_pathv
[i
] != NULL
)
826 free ((__ptr_t
) pglob
->gl_pathv
[i
]);
827 free ((__ptr_t
) pglob
->gl_pathv
);
832 /* Do a collated comparison of A and B. */
834 collated_compare (a
, b
)
838 const char *const s1
= *(const char *const * const) a
;
839 const char *const s2
= *(const char *const * const) b
;
847 return strcoll (s1
, s2
);
851 /* Prepend DIRNAME to each of N members of ARRAY, replacing ARRAY's
852 elements in place. Return nonzero if out of memory, zero if successful.
853 A slash is inserted between DIRNAME and each elt of ARRAY,
854 unless DIRNAME is just "/". Each old element of ARRAY is freed. */
856 prefix_array (dirname
, array
, n
)
862 size_t dirlen
= strlen (dirname
);
864 if (dirlen
== 1 && dirname
[0] == '/')
865 /* DIRNAME is just "/", so normal prepending would get us "//foo".
866 We want "/foo" instead, so don't prepend any chars from DIRNAME. */
869 for (i
= 0; i
< n
; ++i
)
871 size_t eltlen
= strlen (array
[i
]) + 1;
872 char *new = (char *) malloc (dirlen
+ 1 + eltlen
);
876 free ((__ptr_t
) array
[--i
]);
882 char *endp
= (char *) mempcpy (new, dirname
, dirlen
);
884 mempcpy (endp
, array
[i
], eltlen
);
887 memcpy (new, dirname
, dirlen
);
889 memcpy (&new[dirlen
+ 1], array
[i
], eltlen
);
891 free ((__ptr_t
) array
[i
]);
899 /* Return nonzero if PATTERN contains any metacharacters.
900 Metacharacters can be quoted with backslashes if QUOTE is nonzero. */
902 __glob_pattern_p (pattern
, quote
)
906 register const char *p
;
909 for (p
= pattern
; *p
!= '\0'; ++p
)
917 if (quote
&& p
[1] != '\0')
934 weak_alias (__glob_pattern_p
, glob_pattern_p
)
938 /* Like `glob', but PATTERN is a final pathname component,
939 and matches are searched for in DIRECTORY.
940 The GLOB_NOSORT bit in FLAGS is ignored. No sorting is ever done.
941 The GLOB_APPEND flag is assumed to be set (always appends). */
943 glob_in_dir (pattern
, directory
, flags
, errfunc
, pglob
)
945 const char *directory
;
947 int (*errfunc
) __P ((const char *, int));
954 struct globlink
*next
;
957 struct globlink
*names
= NULL
;
962 stream
= ((flags
& GLOB_ALTDIRFUNC
) ?
963 (*pglob
->gl_opendir
) (directory
) :
964 (__ptr_t
) opendir (directory
));
967 if ((errfunc
!= NULL
&& (*errfunc
) (directory
, errno
)) ||
973 else if (pattern
[0] == '\0')
975 /* This is a special case for matching directories like in
977 names
= (struct globlink
*) __alloca (sizeof (struct globlink
));
978 names
->name
= (char *) malloc (1);
979 if (names
->name
== NULL
)
981 names
->name
[0] = '\0';
989 meta
= __glob_pattern_p (pattern
, !(flags
& GLOB_NOESCAPE
));
991 flags
|= GLOB_MAGCHAR
;
997 struct dirent
*d
= ((flags
& GLOB_ALTDIRFUNC
) ?
998 (*pglob
->gl_readdir
) (stream
) :
999 readdir ((DIR *) stream
));
1002 if (! REAL_DIR_ENTRY (d
))
1006 /* If we shall match only directories use the information
1007 provided by the dirent call if possible. */
1008 if ((flags
& GLOB_ONLYDIR
)
1009 && d
->d_type
!= DT_UNKNOWN
&& d
->d_type
!= DT_DIR
)
1015 if ((!meta
&& strcmp (pattern
, name
) == 0)
1016 || fnmatch (pattern
, name
,
1017 (!(flags
& GLOB_PERIOD
) ? FNM_PERIOD
: 0) |
1018 ((flags
& GLOB_NOESCAPE
) ? FNM_NOESCAPE
: 0)
1024 struct globlink
*new
1025 = (struct globlink
*) __alloca (sizeof (struct globlink
));
1027 new->name
= (char *) malloc (len
+ 1);
1028 if (new->name
== NULL
)
1031 *((char *) mempcpy ((__ptr_t
) new->name
, name
, len
)) = '\0';
1033 memcpy ((__ptr_t
) new->name
, name
, len
);
1034 new->name
[len
] = '\0';
1045 if (nfound
== 0 && (flags
& GLOB_NOMAGIC
) && !meta
)
1046 flags
|= GLOB_NOCHECK
;
1048 if (nfound
== 0 && (flags
& GLOB_NOCHECK
))
1050 size_t len
= strlen (pattern
);
1052 names
= (struct globlink
*) __alloca (sizeof (struct globlink
));
1054 names
->name
= (char *) malloc (len
+ 1);
1055 if (names
->name
== NULL
)
1058 *((char *) mempcpy (names
->name
, pattern
, len
)) = '\0';
1060 memcpy (names
->name
, pattern
, len
);
1061 names
->name
[len
] = '\0';
1068 = (char **) realloc (pglob
->gl_pathv
,
1070 ((flags
& GLOB_DOOFFS
) ? pglob
->gl_offs
: 0) +
1073 if (pglob
->gl_pathv
== NULL
)
1076 if (flags
& GLOB_DOOFFS
)
1077 while (pglob
->gl_pathc
< pglob
->gl_offs
)
1078 pglob
->gl_pathv
[pglob
->gl_pathc
++] = NULL
;
1080 for (; names
!= NULL
; names
= names
->next
)
1081 pglob
->gl_pathv
[pglob
->gl_pathc
++] = names
->name
;
1082 pglob
->gl_pathv
[pglob
->gl_pathc
] = NULL
;
1084 pglob
->gl_flags
= flags
;
1088 if (flags
& GLOB_ALTDIRFUNC
)
1089 (*pglob
->gl_closedir
) (stream
);
1091 closedir ((DIR *) stream
);
1094 return nfound
== 0 ? GLOB_NOMATCH
: 0;
1099 if (flags
& GLOB_ALTDIRFUNC
)
1100 (*pglob
->gl_closedir
) (stream
);
1102 closedir ((DIR *) stream
);
1105 while (names
!= NULL
)
1107 if (names
->name
!= NULL
)
1108 free ((__ptr_t
) names
->name
);
1109 names
= names
->next
;
1111 return GLOB_NOSPACE
;
1114 #endif /* Not ELIDE_CODE. */