| Linux Standard Base PDA Specification 3.0RC3 | ||
|---|---|---|
| <<< Previous | Next >>> | |
The glob64() function is a large-file version of the glob() defined in ISO POSIX (2003). It shall search for pathnames matching pattern according to the rules used by the shell, /bin/sh. No tilde expansion or parameter substitution is done; see wordexp().
The results of a glob64()
call are stored in the structure pointed to by pglob,
which is a glob64_t declared in
glob.h with the following members:
typedef struct
{
size_t |
Structure members with the same name as corresponding members of a
glob_t as
defined in ISO POSIX (2003) shall have the same purpose.
Other members are defined as follows:
A large file or large directory is one with a size which cannot be represented by a variable of type off_t.
On success, 0 is returned. Other possible returns are:
| GLOB_NOSPACE | out of memory | |
| GLOB_ABORTED | read error | |
| GLOB_NOMATCH | no match found |
| <<< Previous | Home | Next >>> |
| getutent_r | Up | globfree64 |